mirror of
https://github.com/Ernous/TorrServerJellyfin.git
synced 2025-12-19 21:46:11 +05:00
add missing key prop to RightSideComponent
This commit is contained in:
@@ -151,7 +151,9 @@ export default function RightSideComponent({
|
|||||||
defaultValue='Other'
|
defaultValue='Other'
|
||||||
>
|
>
|
||||||
{TORRENT_CATEGORIES.map(category => (
|
{TORRENT_CATEGORIES.map(category => (
|
||||||
<MenuItem value={category.name}>{category.name}</MenuItem>
|
<MenuItem key={category.name} value={category.name}>
|
||||||
|
{category.name}
|
||||||
|
</MenuItem>
|
||||||
))}
|
))}
|
||||||
</Select>
|
</Select>
|
||||||
</FormControl>
|
</FormControl>
|
||||||
|
|||||||
Reference in New Issue
Block a user