Skip to content

Commit

Permalink
minor version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
EwanLyon committed Jan 14, 2024
1 parent 513f7bf commit 07eb433
Show file tree
Hide file tree
Showing 7 changed files with 4,615 additions and 5,091 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
# nx
dist
.nx-container
/.nx

# dependencies
node_modules
Expand Down
2 changes: 1 addition & 1 deletion apps/nextjs/components/Ticket/BundleSale.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export function BundleProduct() {
}, [genTicketLoading, successfulTicket]);

useEffect(() => {
let interval: NodeJS.Timer;
let interval: NodeJS.Timeout;
if (waitForTicket) {
interval = setInterval(() => {
if (successfulTicket) {
Expand Down
2 changes: 1 addition & 1 deletion apps/nextjs/components/Ticket/ShirtSale.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ const Store = () => {
}, [genShirtLoading, successfulShirt]);

useEffect(() => {
let interval: NodeJS.Timer;
let interval: NodeJS.Timeout;
if (waitForShirt) {
interval = setInterval(() => {
if (successfulShirt) {
Expand Down
2 changes: 1 addition & 1 deletion apps/nextjs/components/Ticket/TicketSale.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export function TicketProduct() {
}, [genTicketLoading, successfulTicket]);

useEffect(() => {
let interval: NodeJS.Timer;
let interval: NodeJS.Timeout;
if (waitForTicket) {
interval = setInterval(() => {
if (successfulTicket) {
Expand Down
2 changes: 1 addition & 1 deletion apps/nextjs/pages/ASM2023/shirt.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ const Shirt = () => {
}, [genShirtLoading, successfulShirt]);

useEffect(() => {
let interval: NodeJS.Timer;
let interval: NodeJS.Timeout;
if (waitForShirt) {
interval = setInterval(() => {
if (successfulShirt) {
Expand Down
Loading

0 comments on commit 07eb433

Please sign in to comment.