From f62e0c5718c73bb7d9756f8fa1bdf35ff0f0e9e0 Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Sun, 15 Feb 2026 21:48:12 +0200 Subject: [PATCH] fix background image --- src/App.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/App.js b/src/App.js index c7862a8fb..273b3e3bc 100644 --- a/src/App.js +++ b/src/App.js @@ -136,7 +136,7 @@ export default { return this.currentUser.background_image }, instanceBackground() { - return this.mergedConfig.hideInstanceWallpaper ? null : this.background + return useSyncConfigStore().mergedConfig.hideInstanceWallpaper ? null : this.instanceBackgroundUrl }, background() { return this.userBackground || this.instanceBackground @@ -209,7 +209,7 @@ export default { 'editingAvailable', ]), ...mapState(useInstanceStore, { - background: (store) => store.instanceIdentity.background, + instanceBackgroundUrl: (store) => store.instanceIdentity.background, showFeaturesPanel: (store) => store.instanceIdentity.showFeaturesPanel, instanceSpecificPanelPresent: (store) => store.instanceIdentity.showInstanceSpecificPanel &&