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.
1 parent e586597 commit 2ce7ffbCopy full SHA for 2ce7ffb
frontend/src/app/(auth)/match/page.tsx
@@ -55,7 +55,9 @@ const showLoadingSpinner = (onCancel: () => void) => {
55
Swal.showLoading();
56
const timer = Swal.getPopup()!.querySelector("#timer");
57
setInterval(() => {
58
- timer!.textContent = `${Math.floor(Swal.getTimerLeft() / 1000)}`;
+ timer!.textContent = `${
59
+ TIMEOUT_TIMER - Math.ceil(Swal.getTimerLeft() / 1000)
60
+ }`;
61
}, 100);
62
},
63
}).then((result) => {
0 commit comments