(streak: number)
| 38 | } |
| 39 | |
| 40 | function getStreakMilestone(streak: number): number | null { |
| 41 | return STREAK_MILESTONES.find(m => m === streak) ?? null |
| 42 | } |
| 43 | |
| 44 | const isToastVisible = ref(false) |
| 45 | let started = false |
no outgoing calls
no test coverage detected