fix: newBirthday type

Co-Authored-By: mrjvs <mistrjvs@gmail.com>
This commit is contained in:
limes
2026-08-20 21:14:09 +02:00
parent 711bf3f578
commit 54eb3e9ec8

View File

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