Skip to content

Commit 190fb1f

Browse files
committed
fix: key
1 parent 692ab0d commit 190fb1f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -258,8 +258,8 @@ export default function Root() {
258258
<div className='mb-2 w-120 max-w-full self-center'>{status || nbsp}</div>
259259

260260
<div className='self-center grow flex-0 flex flex-wrap gap-6'>
261-
{images.map(it => {
262-
return <div className='flex flex-col'>
261+
{images.map((it, i) => {
262+
return <div className='flex flex-col' key={i}>
263263
<div className='min-h-0 max-h-full truncate'>{it.name}</div>
264264
<a
265265
type='button'

0 commit comments

Comments
 (0)