From 305021101c1c5d4d4cdea8a8cad8f881c4f586bb Mon Sep 17 00:00:00 2001 From: Kamigen <46357922+Edouard127@users.noreply.github.com> Date: Sun, 28 Apr 2024 19:52:06 -0400 Subject: [PATCH] Fix: Double slash breaks everything --- src/stores/auth.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/auth.js b/src/stores/auth.js index df46393..dd1cc3c 100644 --- a/src/stores/auth.js +++ b/src/stores/auth.js @@ -1,6 +1,6 @@ import { defineStore } from 'pinia'; -const baseUrl = '/api/'; +const baseUrl = '/api'; export const auth = defineStore({ id: 'auth',