fix: progress timer in lessons

This commit is contained in:
Jannat Patel
2025-07-23 11:31:41 +05:30
parent 6d55040e43
commit aacfea6ea5
2 changed files with 2 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
name: Create weekly release name: Create weekly release
on: on:
schedule: schedule:
- cron: '30 4 15 * *' - cron: '30 3 * * 3'
workflow_dispatch: workflow_dispatch:
jobs: jobs:

View File

@@ -604,7 +604,7 @@ const updateVideoTime = (video) => {
} }
const startTimer = () => { const startTimer = () => {
timerInterval = setInterval(() => { let timerInterval = setInterval(() => {
timer.value++ timer.value++
if (timer.value == 30) { if (timer.value == 30) {
clearInterval(timerInterval) clearInterval(timerInterval)