mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-12 02:51:39 +00:00
fix(Dropdown): use option value as key instead missing id
This commit is contained in:
parent
a21e5698c8
commit
db7277714b
1 changed files with 1 additions and 1 deletions
|
|
@ -63,7 +63,7 @@ const Dropdown = ({ level, setLevel, options, onSelect, selectedOption, menuOpen
|
|||
.filter((option: MultiselectMenuOption) => !option.hidden)
|
||||
.map((option: MultiselectMenuOption) => (
|
||||
<Option
|
||||
key={option.id}
|
||||
key={option.value}
|
||||
ref={handleSetOptionRef(option.value)}
|
||||
option={option}
|
||||
onSelect={onSelect}
|
||||
|
|
|
|||
Loading…
Reference in a new issue