summaryrefslogtreecommitdiff
path: root/app/src/store
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/store')
-rw-r--r--app/src/store/modules/auth.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/src/store/modules/auth.ts b/app/src/store/modules/auth.ts
index b3e72de..769a7de 100644
--- a/app/src/store/modules/auth.ts
+++ b/app/src/store/modules/auth.ts
@@ -73,7 +73,7 @@ const auth = {
async getMe(context: AuthContext) {
const api = context.rootState.api;
- await fetch(`${api}/users/me`, {
+ await fetch(`${api}/users`, {
method: "GET",
headers: {
"Content-Type": "application/json",