remove hard coded username

This commit is contained in:
tdgao
2026-04-17 09:41:53 -06:00
parent 695817d61d
commit ddceea9046
@@ -66,7 +66,7 @@ const oauthFlowState = computed(() => {
const defaultUsername = computed(() => {
const queryUsername = route.query.username
const value = Array.isArray(queryUsername) ? queryUsername[0] : queryUsername
return typeof value === 'string' && value.length > 0 ? value : 'user'
return typeof value === 'string' && value.length > 0 ? value : ''
})
const dateOfBirth = ref('')