From c97380cd85a21702a237ae67ce22d22835db1ca6 Mon Sep 17 00:00:00 2001 From: itsrubberduck Date: Sat, 20 Sep 2025 23:42:48 +0200 Subject: [PATCH] mission hub updates --- app/pages/learn.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/pages/learn.vue b/app/pages/learn.vue index edad175..5d88ef9 100644 --- a/app/pages/learn.vue +++ b/app/pages/learn.vue @@ -1291,7 +1291,7 @@ function moduleSecondaryIcon(modId: string) { function moduleStatusText(modId: string) { if (!isModuleUnlocked(modId)) return 'Locked' if (moduleCompleted(modId)) return 'Complete' - if (moduleHasProgress(modId)) return 'In progress' + if (moduleHasProgress(modId)) return 'Progress' return 'Ready' } @@ -1452,7 +1452,7 @@ function objectiveProgressPct(objective: Objective): number { function objectiveBadgeLabel(objective: Objective): string { if (objective.complete) return 'Completed' - if (!objective.goal || objective.goal <= 0) return 'In progress' + if (!objective.goal || objective.goal <= 0) return 'Progress' const clamped = Math.min(objective.goal, Math.max(0, Math.round(objective.progress))) return `${clamped}/${objective.goal}` }