Skip to content

Commit aea6f59

Browse files
committed
fix
1 parent 75df357 commit aea6f59

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/content-link/ContentLink.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,8 @@ export function ContentLink({
136136
: ""
137137
}
138138
>
139-
{content.mediaRecords?.slice(0, 4).map((x) => (
140-
<MediaRecordIcon type={x.type} />
139+
{content.mediaRecords?.slice(0, 4).map((x, idx) => (
140+
<MediaRecordIcon type={x.type} key={idx} />
141141
))}
142142
</div>
143143
) : content.__typename === "FlashcardSetAssessment" ? (

0 commit comments

Comments
 (0)