From d08c0d29c7207adef8ed58a98351b65dca73ab13 Mon Sep 17 00:00:00 2001 From: archipelago Date: Sun, 19 Jul 2026 00:29:46 -0400 Subject: [PATCH] fix(ui): ElectrumX sync screen shows the app's icon instead of a generic glyph The pre-UI sync overlay used a hardcoded orange box-glyph SVG; it now renders the same resolved app icon the loading screen uses (with the shared image-error fallback), so the wait page reads as ElectrumX at a glance. Co-Authored-By: Claude Fable 5 --- neode-ui/src/views/appSession/AppSessionFrame.vue | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/neode-ui/src/views/appSession/AppSessionFrame.vue b/neode-ui/src/views/appSession/AppSessionFrame.vue index fcb95d49..883003ac 100644 --- a/neode-ui/src/views/appSession/AppSessionFrame.vue +++ b/neode-ui/src/views/appSession/AppSessionFrame.vue @@ -18,10 +18,8 @@ let the app's own UI load instead of a loader stuck on top (B7). -->
-
- - - +
+

{{ appTitle }} is syncing

@@ -119,6 +117,7 @@ import { nextTick, onBeforeUnmount, ref, watch } from 'vue' import type { ElectrsSyncStatus } from '@/composables/useElectrsSync' import AppLoadingScreen from '@/components/AppLoadingScreen.vue' +import { handleImageError } from '@/views/apps/appsConfig' const props = defineProps<{ appUrl: string