From b4ca51a6cd93044f27a209c8a3519bd2047990f6 Mon Sep 17 00:00:00 2001 From: OGPoyraz Date: Thu, 16 Jan 2025 11:32:04 +0100 Subject: [PATCH] Fix hiding security alert response --- app/reducers/transaction/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/reducers/transaction/index.js b/app/reducers/transaction/index.js index 5d1ab2efb94..3b37c620150 100644 --- a/app/reducers/transaction/index.js +++ b/app/reducers/transaction/index.js @@ -110,6 +110,8 @@ const transactionReducer = (state = initialState, action) => { ...getTxData(action.transaction), }, ...txMeta, + // Retain the securityAlertResponses from the old state + securityAlertResponses: state.securityAlertResponses, }; } case 'SET_TOKENS_TRANSACTION': {