fix: 2, use user.uuid over user_uuid
Some checks are pending
ci/woodpecker/push/build-and-publish Pipeline is pending
ci/woodpecker/pr/build-and-publish Pipeline is pending

This commit is contained in:
Twig 2025-08-04 21:02:30 +02:00
parent 5d05ec31f2
commit 9a70d89517
Signed by: twig
SSH key fingerprint: SHA256:nBO+OwpTkd8LYhe38PIqdxmDvkIg9Vw2EbrRZM97dkU

View file

@ -30,7 +30,7 @@ export const useProfile = () => {
if ("username" in profile) { if ("username" in profile) {
user_uuid = profile.uuid user_uuid = profile.uuid
} else { } else {
user_uuid = profile.user_uuid user_uuid = profile.user.uuid
} }
const friends = await fetchFriends() const friends = await fetchFriends()