Skip to content

Commit

Permalink
Fix count
Browse files Browse the repository at this point in the history
  • Loading branch information
midudev committed Sep 4, 2023
1 parent a958cb9 commit 2c22c97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sections/ticket-home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export const TicketHome = ({ ticketNumber, username, initialFlavor }) => {
fetch('/api/number')
.then((res) => res.json())
.then((response) => {
setNumber(response.number)
setNumber(+response.number + 100)
})
}, [])

Expand Down

1 comment on commit 2c22c97

@vercel
Copy link

@vercel vercel bot commented on 2c22c97 Sep 4, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.