Skip to content

Commit

Permalink
fix: remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
phoebus-84 committed Apr 4, 2024
1 parent c100eb8 commit e3adc4d
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/routes/[[lang]]/[id]/verify/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@ Then print data
$: s = count - h * 3600 - mi * 60;
function updateTimer() {
console.log('ll: update', count);
now = dayjs().unix();
}
Expand Down Expand Up @@ -184,11 +183,11 @@ Then print data
{#if count > 0}
<d-text size="m">Expires in:</d-text>
<div class="flex flex-row items-center justify-center gap-1">
<d-text size="m">{mi}m</d-text>
<d-text size="m">{s}s</d-text>
<d-heading size="s">{mi}m</d-heading>
<d-heading size="s">{s}s</d-heading>
</div>
{:else}
<d-text size="m">Expired</d-text>
<d-heading class="text-error" size="m">Expired</d-heading>
{/if}
</div>
</div>
Expand Down

0 comments on commit e3adc4d

Please sign in to comment.