From 9a70d895178fb20fc3c5adf663c26a0ac6001501 Mon Sep 17 00:00:00 2001 From: Temmie Date: Mon, 4 Aug 2025 21:02:30 +0200 Subject: [PATCH] fix: 2, use user.uuid over user_uuid --- composables/profile.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composables/profile.ts b/composables/profile.ts index c2a5afe..f3515e6 100644 --- a/composables/profile.ts +++ b/composables/profile.ts @@ -30,7 +30,7 @@ export const useProfile = () => { if ("username" in profile) { user_uuid = profile.uuid } else { - user_uuid = profile.user_uuid + user_uuid = profile.user.uuid } const friends = await fetchFriends()