Skip to content

Commit 186b610

Browse files
authored
Add option tag keys (#65)
1 parent 5219cea commit 186b610

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

entrypoints/popup/App.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,9 @@ function App() {
294294
}}
295295
>
296296
{colorSettings.map(({ sessionARN }, i) => (
297-
<option value={i}>{sessionARN}</option>
297+
<option key={i} value={i}>
298+
{sessionARN}
299+
</option>
298300
))}
299301
<option value={indexOfNewColorSetting}>[New]</option>
300302
</select>

0 commit comments

Comments
 (0)