Skip to content

Commit 27bbfba

Browse files
committed
Fix #4
1 parent cfde47b commit 27bbfba

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

frontend/src/components/CardContainer/CardContainer.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ export const CardContainer: FC = () => {
2727
}
2828
}
2929
>
30-
{notes.map((note, i) => (
31-
<Card key={i} note={note} />
30+
{notes.map((note) => (
31+
<Card key={note._id} note={note} />
3232
))}
3333
</div>
3434
</>

0 commit comments

Comments
 (0)