We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e1e6088 + 705345f commit e9d18baCopy full SHA for e9d18ba
front/src/pages/WaitingQueuePage/index.tsx
@@ -109,7 +109,9 @@ export default function WaitingQueuePage() {
109
firstWaitingTime.current == null
110
? 0
111
: ((firstWaitingTime.current - waitingTime!) / firstWaitingTime.current!) * 100;
112
- const canGo = restCount !== null && restCount <= 0;
+
113
+ const canGo = restCount !== null && restCount < 0;
114
115
if (canGo) {
116
if (eventId) {
117
navigate(ROUTE_URL.EVENT.DETAIL(Number(eventId)), { replace: true });
0 commit comments