Commit 12f6b772 authored by nanahira's avatar nanahira

remove vaptcha

parent cb6e94aa
......@@ -11,7 +11,7 @@ export async function forgot(params) {
return request('/forgot', {
method: 'POST',
body: JSON.stringify(params),
vaptcha: true,
// vaptcha: true,
});
}
......@@ -19,7 +19,7 @@ export async function register(params) {
return request('/signup', {
method: 'POST',
body: JSON.stringify(params),
vaptcha: true,
// vaptcha: true,
});
}
......
......@@ -19,6 +19,5 @@ export async function updateAccount(params) {
Authorization: `Bearer ${params.token}`,
'content-type': 'application/json',
},
// vaptcha: true,
});
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment