Fix key for tagger scenes (#5000)

This commit is contained in:
WithoutPants 2024-06-21 16:15:59 +10:00 committed by GitHub
parent a7e5ccd080
commit 2b1a57c6d0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -264,7 +264,7 @@ export const Tagger: React.FC<ITaggerProps> = ({ scenes, queue }) => {
<div>
{filteredScenes.map((s, i) => (
<Scene
key={i}
key={s.id}
scene={s}
searchResult={searchResults[s.id]}
index={i}