diff --git a/neode-ui/src/components/LndSeedBackupPrompt.vue b/neode-ui/src/components/LndSeedBackupPrompt.vue index 6d89462d..20755a35 100644 --- a/neode-ui/src/components/LndSeedBackupPrompt.vue +++ b/neode-ui/src/components/LndSeedBackupPrompt.vue @@ -101,7 +101,10 @@ const show = computed(() => ) function backUpNow() { - router.push(LND_DETAILS_PATH).catch(() => {}) + // seed-backup=1 makes the LND page open the reveal flow immediately — + // landing on the app page with the card below the fold read as + // "clicking the notification did nothing". + router.push({ path: LND_DETAILS_PATH, query: { 'seed-backup': '1' } }).catch(() => {}) } function snooze() { diff --git a/neode-ui/src/views/appDetails/LndSeedBackup.vue b/neode-ui/src/views/appDetails/LndSeedBackup.vue index 73494b96..95e0b016 100644 --- a/neode-ui/src/views/appDetails/LndSeedBackup.vue +++ b/neode-ui/src/views/appDetails/LndSeedBackup.vue @@ -1,5 +1,6 @@