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 fee40d3 commit 938ac60Copy full SHA for 938ac60
src/components/CountdownBar.vue
@@ -12,7 +12,6 @@ const totalDuration = endDate - startDate
12
function updateCountdown() {
13
const now = new Date()
14
const timeLeft = endDate - now
15
- const elapsed = now - startDate
16
17
if (timeLeft <= 0) {
18
hoursLeft.value = 0
@@ -43,7 +42,7 @@ onUnmounted(() => {
43
42
<div class="progress" :style="{ width: percentComplete + '%' }"></div>
44
</div>
45
<div class="time-left">
46
- {{ hoursLeft }}h {{ minutesLeft }}m remaining
+ {{ hoursLeft }}h {{ minutesLeft }}m remaining to cure ballots
47
48
49
</template>
0 commit comments