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);