From 1b55611336933afd38e7e30fa8f40dd9d1869fcc Mon Sep 17 00:00:00 2001 From: einhornimmond Date: Tue, 20 May 2025 11:23:35 +0200 Subject: [PATCH] fix missing branch for timed out login token --- frontend/src/pages/TransactionLink.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/frontend/src/pages/TransactionLink.vue b/frontend/src/pages/TransactionLink.vue index 2ff63b08d..df88e0cfc 100644 --- a/frontend/src/pages/TransactionLink.vue +++ b/frontend/src/pages/TransactionLink.vue @@ -165,7 +165,11 @@ const itemType = computed(() => { if (store.state.token && store.state.tokenTime) { if (tokenExpiresInSeconds.value < 5) { // console.log('TransactionLink.itemType... REDEEM_SELECT_COMMUNITY') - return 'REDEEM_SELECT_COMMUNITY' + if (CONFIG.CROSS_TX_REDEEM_LINK_ACTIVE) { + return 'REDEEM_SELECT_COMMUNITY' + } else { + return 'LOGGED_OUT' + } } } // console.log(