From 02cb89801a34c6b15980673f5c26669ff205d568 Mon Sep 17 00:00:00 2001 From: ThatOneCalculator Date: Sat, 17 Dec 2022 17:42:08 -0800 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=A5=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 2 +- packages/client/src/pages/about.vue | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 9620e2058..96fbd0989 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "calckey", - "version": "13.0.8", + "version": "13.0.9", "codename": "aqua", "repository": { "type": "git", diff --git a/packages/client/src/pages/about.vue b/packages/client/src/pages/about.vue index 83d7941f7..2a6af9578 100644 --- a/packages/client/src/pages/about.vue +++ b/packages/client/src/pages/about.vue @@ -14,7 +14,7 @@
- +
{{ $instance.name || host }}
@@ -125,7 +125,6 @@ let iconClicks = 0; let tabs = ['overview', 'emojis', 'charts']; let tab = $ref(tabs[0]); watch($$(tab), () => (syncSlide(tabs.indexOf(tab)))); -watch(defaultStore.woozyMode, () => {}); if (iAmModerator) tabs.push('federation'); @@ -174,7 +173,7 @@ async function easterEgg(): Promise { const normalizedCount = (iconClicks % 3) + 1; instanceIcon.style.animation = `iconShake${normalizedCount} 0.${normalizedCount}s 1`; if (iconClicks % 3 === 0) { - defaultStore.set('woozyMode', !defaultStore.woozyMode); + defaultStore.state.set('woozyMode', !defaultStore.state.woozyMode); await sleep(0.4); instanceIcon.style.animation = 'unset'; instanceIcon.style.animation = 'swpinY 0.9s 1';