aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/.server/api/client.ts
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/app/.server/api/client.ts')
-rw-r--r--frontend/app/.server/api/client.ts9
1 files changed, 1 insertions, 8 deletions
diff --git a/frontend/app/.server/api/client.ts b/frontend/app/.server/api/client.ts
index edcffc1..fef1508 100644
--- a/frontend/app/.server/api/client.ts
+++ b/frontend/app/.server/api/client.ts
@@ -8,18 +8,11 @@ const apiClient = createClient<paths>({
: "http://api-server/phperkaigi/2025/code-battle/api/",
});
-export async function apiPostLogin(
- username: string,
- password: string,
- registrationToken: string | null,
-) {
+export async function apiPostLogin(username: string, password: string) {
const { data, error } = await apiClient.POST("/login", {
body: {
username,
password,
- ...(registrationToken !== null
- ? { registration_token: registrationToken }
- : {}),
},
});
if (error) throw new Error(error.message);