Fix get info dialog in artist page. Closes #1909

This commit is contained in:
Deluan 2022-10-04 10:37:32 -04:00
parent 37f7625c7d
commit 12b4a48842
1 changed files with 3 additions and 0 deletions

View File

@ -9,6 +9,8 @@ import config from '../config'
import { LoveButton, RatingField } from '../common'
import Lightbox from 'react-image-lightbox'
import { AddToPlaylistDialog } from '../dialogs'
import ExpandInfoDialog from '../dialogs/ExpandInfoDialog'
import AlbumInfo from '../album/AlbumInfo'
const useStyles = makeStyles(
(theme) => ({
@ -148,6 +150,7 @@ const DesktopArtistDetails = ({ img, artistInfo, record, biography }) => {
)}
</Card>
<AddToPlaylistDialog />
<ExpandInfoDialog content={<AlbumInfo />} />
</div>
)
}