Fix add playlist dialog (#1758)

This commit is contained in:
Evan.Shu 2022-09-29 07:45:39 +05:30 committed by Joe Stump
parent 63eece0cf8
commit 6b2c9a1c75
No known key found for this signature in database
GPG Key ID: 29151C3EC48A0EB9

View File

@ -8,6 +8,7 @@ import ArtistExternalLinks from './ArtistExternalLink'
import config from '../config'
import { LoveButton, RatingField } from '../common'
import Lightbox from 'react-image-lightbox'
import { AddToPlaylistDialog } from '../dialogs'
const useStyles = makeStyles(
(theme) => ({
@ -146,6 +147,7 @@ const DesktopArtistDetails = ({ img, artistInfo, record, biography }) => {
/>
)}
</Card>
<AddToPlaylistDialog />
</div>
)
}