diff --git a/package.json b/package.json index a97c97d5e8..df2aa8dcd0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "calckey", - "version": "13.0.5-rc.1", + "version": "13.0.5-rc.2", "codename": "aqua", "repository": { "type": "git", diff --git a/packages/client/src/pages/about.vue b/packages/client/src/pages/about.vue index 83af937871..b92425709b 100644 --- a/packages/client/src/pages/about.vue +++ b/packages/client/src/pages/about.vue @@ -14,7 +14,7 @@
- +
{{ $instance.name || host }}
@@ -177,7 +177,7 @@ async function easterEgg(): Promise { const normalizedCount = (iconClicks % 3) + 1; instanceIcon.style.animation = `iconShake${normalizedCount} 0.${normalizedCount}s 1`; if (iconClicks % 3 === 0) { - defaultStore.state.set('woozyMode', !defaultStore.state.woozyMode); + defaultStore.state.woozyMode = !defaultStore.state.woozyMode; await sleep(0.4); instanceIcon.style.animation = 'unset'; instanceIcon.style.animation = 'swpinY 0.9s 1';