We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2fc87b commit f549322Copy full SHA for f549322
services/frontend/src/views/Login.vue
@@ -91,13 +91,13 @@ const onSubmit = form.handleSubmit(async (values) => {
91
const controller = new AbortController()
92
const timeoutId = setTimeout(() => controller.abort(), 10000) // 10 second timeout
93
94
- const response = await fetch(`${apiUrl}/auth/login`, {
+ const response = await fetch(`${apiUrl}/api/auth/email/login/email`, {
95
method: 'POST',
96
headers: {
97
'Content-Type': 'application/json',
98
},
99
body: JSON.stringify({
100
- email: values.email,
+ login: values.email,
101
password: values.password,
102
}),
103
signal: controller.signal,
0 commit comments