mirror of
https://github.com/modrinth/code.git
synced 2026-08-30 11:36:05 +00:00
remove hard coded username
This commit is contained in:
@@ -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('')
|
||||
|
||||
Reference in New Issue
Block a user