summaryrefslogtreecommitdiff
path: root/packages/frontend/src/components/MkSignupDialog.form.vue
diff options
context:
space:
mode:
authorsyuilo <4439005+syuilo@users.noreply.github.com>2025-03-20 16:10:38 +0900
committersyuilo <4439005+syuilo@users.noreply.github.com>2025-03-20 16:10:38 +0900
commit71188b3463648e0f3476d89cba45cb52b750cdbc (patch)
treecfcd46105f61078d04c73258d62425f1533c52af /packages/frontend/src/components/MkSignupDialog.form.vue
parentfix lint (diff)
downloadmisskey-71188b3463648e0f3476d89cba45cb52b750cdbc.tar.gz
misskey-71188b3463648e0f3476d89cba45cb52b750cdbc.tar.bz2
misskey-71188b3463648e0f3476d89cba45cb52b750cdbc.zip
fix lint
Diffstat (limited to 'packages/frontend/src/components/MkSignupDialog.form.vue')
-rw-r--r--packages/frontend/src/components/MkSignupDialog.form.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/components/MkSignupDialog.form.vue b/packages/frontend/src/components/MkSignupDialog.form.vue
index 78b6722c1e..65b879235f 100644
--- a/packages/frontend/src/components/MkSignupDialog.form.vue
+++ b/packages/frontend/src/components/MkSignupDialog.form.vue
@@ -267,7 +267,7 @@ async function onSubmit(): Promise<void> {
'testcaptcha-response': testcaptchaResponse.value,
};
- const res = await fetch(`${config.apiUrl}/signup`, {
+ const res = await window.fetch(`${config.apiUrl}/signup`, {
method: 'POST',
headers: {
'Content-Type': 'application/json',