We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cfde47b commit 27bbfbaCopy full SHA for 27bbfba
1 file changed
frontend/src/components/CardContainer/CardContainer.tsx
@@ -27,8 +27,8 @@ export const CardContainer: FC = () => {
27
}
28
29
>
30
- {notes.map((note, i) => (
31
- <Card key={i} note={note} />
+ {notes.map((note) => (
+ <Card key={note._id} note={note} />
32
))}
33
</div>
34
</>
0 commit comments