Skip to content

Commit

Permalink
fix: add missing key props
Browse files Browse the repository at this point in the history
  • Loading branch information
Thechi2000 committed Mar 24, 2024
1 parent c609925 commit 81349a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/components/SocialsList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default function SocialsList({
var list: any = [];
socials.forEach((s) => {
list.push(
<Link href={s.link || ""}>
<Link href={s.link || ""} id={s.id?.toString()}>
<DirectusImage
img={s.logo}
name={s.media_name}
Expand Down

0 comments on commit 81349a7

Please sign in to comment.