mirror of
https://github.com/jeffvli/sonixd.git
synced 2026-04-29 10:42:40 -04:00
Set default auto genre to undefined from ''
- Resolves genre check in gonic
This commit is contained in:
@@ -76,7 +76,7 @@ const NowPlayingView = () => {
|
||||
);
|
||||
const [autoPlaylistFromYear, setRandomPlaylistFromYear] = useState(0);
|
||||
const [autoPlaylistToYear, setRandomPlaylistToYear] = useState(0);
|
||||
const [randomPlaylistGenre, setRandomPlaylistGenre] = useState('');
|
||||
const [randomPlaylistGenre, setRandomPlaylistGenre] = useState<string | undefined>(undefined);
|
||||
const [isLoadingRandom, setIsLoadingRandom] = useState(false);
|
||||
const [musicFolder, setMusicFolder] = useState(folder.musicFolder);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user