Skip to content

Commit

Permalink
Fix regression on bgColor
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanoverna committed May 31, 2024
1 parent 0988d00 commit b93bfba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Image/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ export const Image = forwardRef<HTMLDivElement, ImagePropTypes>(
left: '-5%',
top: '-5%',
width: '110%',
height: 'auto',
height: data.base64 ? 'auto' : '110%',
maxWidth: 'none',
maxHeight: 'none',
...placeholderStyle,
Expand Down

0 comments on commit b93bfba

Please sign in to comment.