Fix possible TypeError

This commit is contained in:
Deluan 2021-05-05 21:14:36 -04:00
parent 9e559311ad
commit fb33aa4496
1 changed files with 2 additions and 2 deletions

View File

@ -185,8 +185,8 @@ const LoadedAlbumGrid = ({ ids, data, basePath, width }) => {
)
}
const AlbumGridView = ({ albumListType, loading, ...props }) => {
const hide = loading && albumListType === 'random'
const AlbumGridView = ({ albumListType, loaded, loading, ...props }) => {
const hide = (loading && albumListType === 'random') || !props.data
return hide ? <Loading /> : <LoadedAlbumGrid {...props} />
}