The TopList component uses username as a React key, which can lead to inconsistencies if we move away from usernames. ### Tasks - [ ] Open components/top-list.tsx. - [ ] Find the Card component mapping. - [ ] Change key={top-${user.username}} to key={top-${user.name}}. - [ ] Verify UserResult includes the name field.
The TopList component uses username as a React key, which can lead to inconsistencies if we move away from usernames.
Tasks