Skip to content

Commit

Permalink
fix: use correct size in OptimizedImage placeholder (#912)
Browse files Browse the repository at this point in the history
Signed-off-by: Norman Meier <[email protected]>
  • Loading branch information
n0izn0iz authored Feb 2, 2024
1 parent b34701e commit 66b4668
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/components/OptimizedImage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ export const OptimizedImage: React.FC<
return (
<View
style={{
width,
height,
width: otherStyle.width,
height: otherStyle.height,
position: otherStyle.position,
top: otherStyle.top,
left: otherStyle.left,
Expand Down

0 comments on commit 66b4668

Please sign in to comment.