feat: stupid search

This commit is contained in:
2023-11-27 15:12:45 +00:00
parent 1d16d61ea1
commit acd4c8ec3f
7 changed files with 303 additions and 239 deletions

View File

@ -21,7 +21,7 @@ export function TorrentList({ items }: { items: Array<TaggedNostrEvent> }) {
</thead>
<tbody>
{items.map((a) => (
<TorrentTableEntry item={a} />
<TorrentTableEntry item={a} key={a.id} />
))}
</tbody>
</table>