Skip to content

Commit ef7aca0

Browse files
committed
fix: pre-fill custom URL with current origin in settings page
1 parent 35de078 commit ef7aca0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

frontend/src/pages/SettingsPage.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ const loadingAccount = ref(true)
208208
const loadingNetwork = ref(true)
209209
const saving = ref(false)
210210
const networkMode = ref<'subdomain' | 'custom'>('subdomain')
211-
const customUrl = ref('')
211+
const customUrl = ref(window.location.origin)
212212
213213
const proxyStatus = reactive({
214214
connected: false,

0 commit comments

Comments
 (0)