Set keys on list elements

This commit is contained in:
2026-04-12 01:30:18 -04:00
parent 4b15c65092
commit 1f2a8770a1
2 changed files with 5 additions and 1 deletions

View File

@@ -91,7 +91,7 @@ export default function (props: { isOpen: boolean; onClose: () => void }) {
</Thead>
<Tbody>
{entries.map((entry) => (
<Tr>
<Tr key={`appealban_${entry.user}`}>
<Td>{entry.user}</Td>
<Td>{entry.created_by}</Td>
<Td>{new Date(entry.created_at).toUTCString()}</Td>