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 21b38d0 commit db8527dCopy full SHA for db8527d
src/components/auth/RefreshToken.vue
@@ -22,7 +22,10 @@ onMounted(async () => {
22
<template>
23
<div v-if="user" class="mt-10 sm:mx-auto sm:w-full sm:max-w-[480px]">
24
<div class="prose dark:prose-invert text-center py-8" v-if="willRedirect">
25
- redirecting in {{ Math.round(countdown / 1000) }}s ...
+ <div v-if="countdown < 1000"> redirecting...</div>
26
+ <div v-else>
27
+ redirecting in {{ Math.round(countdown / 1000) }}s ...
28
+ </div>
29
</div>
30
<BaseCard>
31
<div v-if="isLoggedIn">
0 commit comments