mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
refactor(web): ♻ add key to components of SyntaxCloud
This commit is contained in:
parent
5ca882b51b
commit
cec2f0016a
1 changed files with 1 additions and 1 deletions
|
|
@ -16,7 +16,7 @@ export const SyntaxCloud = (props: Props) =>
|
|||
<h3>{`Syntax${props.syntaxes.length > 1 ? "es" : ""}:`}</h3>
|
||||
)}
|
||||
{props.syntaxes.map((s: Syntax, i: number) => (
|
||||
<SyntaxTag name={s.name} definitionUrl={s.url} />
|
||||
<SyntaxTag key={i} name={s.name} definitionUrl={s.url} />
|
||||
))}
|
||||
</div>
|
||||
) : null;
|
||||
|
|
|
|||
Loading…
Reference in a new issue