From a676a7ed925e95a5819bbeb624b3ca5e3917c7c9 Mon Sep 17 00:00:00 2001 From: notfire Date: Sun, 4 May 2025 22:22:01 -0400 Subject: [PATCH] possibly fix user page loading --- src/components/user_profile/user_profile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/user_profile/user_profile.js b/src/components/user_profile/user_profile.js index 34f5ddd7..913d1bdc 100644 --- a/src/components/user_profile/user_profile.js +++ b/src/components/user_profile/user_profile.js @@ -149,7 +149,7 @@ const UserProfile = { } else { this.$store.dispatch('fetchUser', userNameOrId) .then(({ id, relationship, background_image }) => { - this.note = relationship.note + this.note = relationship?.note this.$store.dispatch('setDisplayBackground', background_image) return loadById(id) })