From 54eb3e9ec82b24c4af0f2e668fd3689305b0888b Mon Sep 17 00:00:00 2001 From: limes Date: Thu, 20 Aug 2026 21:14:09 +0200 Subject: [PATCH] fix: newBirthday type Co-Authored-By: mrjvs --- src/pages/account/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/account/index.vue b/src/pages/account/index.vue index afb8d63..f01a664 100644 --- a/src/pages/account/index.vue +++ b/src/pages/account/index.vue @@ -74,7 +74,7 @@ const selectedServerEnv = ref<'dev' | 'test' | 'prod' | undefined>( profile.value?.serverAccessLevel ); -const newBirthday = ref(parseDate(profile.value?.birthday || '')); +const newBirthday = shallowRef(parseDate(profile.value?.birthday || '')); const newCountry = ref(((profile.value?.region || 0) >>> 24) & 0xff); const newRegion = ref(profile.value?.region); const newTimezone = ref(profile.value?.timezone);