Skip to content

Commit

Permalink
refactor: increase canvas size
Browse files Browse the repository at this point in the history
  • Loading branch information
cs50victor committed Feb 21, 2024
1 parent e6abbfb commit b3eb1b8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions www/app/fal/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ export default function Home() {
connectionKey: 'realtime-nextjs-app',
onResult(result) {
if (result.error) return
console.log("images", result.images)
setImage(result.images[0].url)
}
})
Expand Down Expand Up @@ -114,8 +115,8 @@ export default function Home() {
<div className='border rounded-lg p-1'>
<Image
src={image}
width={550}
height={550}
width={1050}
height={1050}
alt='fal image'
/>
</div>
Expand Down

0 comments on commit b3eb1b8

Please sign in to comment.