Skip to content

Commit

Permalink
[ONC-10] Fix styles for ArtistRecommendations pictures (#7503)
Browse files Browse the repository at this point in the history
  • Loading branch information
sliptype authored Feb 7, 2024
1 parent 8711074 commit c092b7c
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,14 +69,17 @@ const ArtistProfilePictureWrapper = ({
const isMobile = useIsMobile()
if (isMobile) {
return (
<DynamicImage className={styles.profilePicture} image={profilePicture} />
<DynamicImage
wrapperClassName={styles.profilePicture}
image={profilePicture}
/>
)
}
return (
<ArtistPopover mount={MountPlacement.PARENT} handle={handle}>
<div>
<DynamicImage
className={styles.profilePicture}
wrapperClassName={styles.profilePicture}
image={profilePicture}
/>
</div>
Expand Down

0 comments on commit c092b7c

Please sign in to comment.