Skip to content

Commit

Permalink
Fix website image-tile example (#8965)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pessimistress committed Jun 20, 2024
1 parent 3722721 commit 11faf93
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/website/image-tile/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,9 @@ export default function App({
image: props.data,
bounds: [
clamp(left, 0, width),
clamp(bottom, 0, height),
clamp(top, 0, height),
clamp(right, 0, width),
clamp(top, 0, height)
clamp(bottom, 0, height)
]
});
}
Expand Down

0 comments on commit 11faf93

Please sign in to comment.