2
0
Fork 0

possibly fix user page loading

This commit is contained in:
notfire 2025-05-04 22:22:01 -04:00
commit a676a7ed92
No known key found for this signature in database

View file

@ -149,7 +149,7 @@ const UserProfile = {
} else { } else {
this.$store.dispatch('fetchUser', userNameOrId) this.$store.dispatch('fetchUser', userNameOrId)
.then(({ id, relationship, background_image }) => { .then(({ id, relationship, background_image }) => {
this.note = relationship.note this.note = relationship?.note
this.$store.dispatch('setDisplayBackground', background_image) this.$store.dispatch('setDisplayBackground', background_image)
return loadById(id) return loadById(id)
}) })