Skip to content

Commit

Permalink
fix: key
Browse files Browse the repository at this point in the history
  • Loading branch information
wxt2005 committed Nov 11, 2024
1 parent 4aa77cd commit 0e4ff0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/client/components/BangumiItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export default function BangumiItem(props: Props): JSX.Element {
for (const site of item.sites) {
if (!siteMeta[site.site]) continue;
const node = (
<li key={site.id}>
<li key={`${site.site}_${site.id}`}>
<BangumiLinkItem site={site} siteMeta={siteMeta} />
</li>
);
Expand Down

0 comments on commit 0e4ff0f

Please sign in to comment.