Skip to content

Commit

Permalink
fix: 1 != 10
Browse files Browse the repository at this point in the history
  • Loading branch information
tuturd authored Sep 16, 2024
1 parent 4473d03 commit d05e6fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/preparation/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ const Page = () => {

const displayOrders = (orders: Array<Order>) => {

const tenMinutesAgo: moment.Moment = moment().subtract(1, 'minutes');
const tenMinutesAgo: moment.Moment = moment().subtract(10, 'minutes');
const twentyMinutesAgo: moment.Moment = moment().subtract(20, 'minutes');

type itemQuantity = {
Expand Down

0 comments on commit d05e6fb

Please sign in to comment.