From 03793da948f14e3ca55a4d02478fa5b168cdf727 Mon Sep 17 00:00:00 2001 From: Javier Bueno Date: Fri, 8 Nov 2024 14:05:28 +0100 Subject: [PATCH] CR: update --- .../src/features/ReviewTx/common/ReviewTxProvider.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/wallet-mobile/src/features/ReviewTx/common/ReviewTxProvider.tsx b/apps/wallet-mobile/src/features/ReviewTx/common/ReviewTxProvider.tsx index 8e67c82c62..7c0a71614f 100644 --- a/apps/wallet-mobile/src/features/ReviewTx/common/ReviewTxProvider.tsx +++ b/apps/wallet-mobile/src/features/ReviewTx/common/ReviewTxProvider.tsx @@ -43,6 +43,10 @@ const reviewTxReducer = (state: ReviewTxState, action: ReviewTxAction) => { draft.unsignedTx = castDraft(action.unsignedTx) break + case ReviewTxActionType.CborChanged: + draft.cbor = action.cbor + break + case ReviewTxActionType.Reset: draft.unsignedTx = castDraft(defaultState.unsignedTx) draft.cbor = defaultState.cbor