From 6e1a9a472806b497b3d8b18bb9ee422ebbfcea3b Mon Sep 17 00:00:00 2001 From: Pihkaal Date: Fri, 30 Jan 2026 23:22:21 +0100 Subject: [PATCH] feat: implement some TODOs --- app/components/Achievements/TopScreen.vue | 2 +- app/components/Contact/BottomScreen/BottomScreen.vue | 2 -- .../Settings/BottomScreen/Menus/Clock/Achievements.vue | 2 +- .../BottomScreen/Menus/User/PersonalMessage.vue | 10 +++------- app/stores/achievements.ts | 3 +-- app/stores/confirmationModal.ts | 10 +--------- 6 files changed, 7 insertions(+), 22 deletions(-) diff --git a/app/components/Achievements/TopScreen.vue b/app/components/Achievements/TopScreen.vue index 2c59a73..5a2ee0b 100644 --- a/app/components/Achievements/TopScreen.vue +++ b/app/components/Achievements/TopScreen.vue @@ -37,7 +37,7 @@ onRender((ctx) => { ); // progress text - const unlockedCount = achievementsStore.achievements.length; + const unlockedCount = achievementsStore.unlocked.length; const totalCount = ACHIEVEMENTS.length; ctx.font = "7px NDS7"; diff --git a/app/components/Contact/BottomScreen/BottomScreen.vue b/app/components/Contact/BottomScreen/BottomScreen.vue index d646498..2865ea4 100644 --- a/app/components/Contact/BottomScreen/BottomScreen.vue +++ b/app/components/Contact/BottomScreen/BottomScreen.vue @@ -1,6 +1,4 @@