From ca943cbc5aec9ce9a46d35fe21d53c6a2c01aa04 Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Fri, 17 Feb 2023 10:17:41 +0800 Subject: [PATCH] A bit late to fix this but better be consistent --- src/utils/states.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/utils/states.js b/src/utils/states.js index 3ff753ee..857d1f11 100644 --- a/src/utils/states.js +++ b/src/utils/states.js @@ -35,7 +35,7 @@ const states = proxy({ shortcuts: store.account.get('shortcuts') ?? [], // Settings settings: { - boostsCarousel: store.account.get('settings-boostCarousel') ?? true, + boostsCarousel: store.account.get('settings-boostsCarousel') ?? true, }, }); @@ -45,8 +45,8 @@ subscribeKey(states, 'notificationsLast', (v) => { console.log('CHANGE', v); store.account.set('notificationsLast', states.notificationsLast); }); -subscribeKey(states, 'settings-boostCarousel', (v) => { - store.account.set('settings-boostCarousel', !!v); +subscribeKey(states, 'settings-boostsCarousel', (v) => { + store.account.set('settings-boostsCarousel', !!v); }); subscribe(states, (v) => { const [action, path, value] = v[0];