diff --git a/src/components/TransactionsFees/index.tsx b/src/components/TransactionsFees/index.tsx index c5e54f19..09187210 100644 --- a/src/components/TransactionsFees/index.tsx +++ b/src/components/TransactionsFees/index.tsx @@ -21,6 +21,9 @@ export const TransactionFees = ({ txEstimationExecutionStatus, }: TransactionFailTextProps): React.ReactElement | null => { let transactionAction + if (txEstimationExecutionStatus === EstimationStatus.LOADING) { + return null + } if (isCreation) { transactionAction = 'create' } else if (isExecution) { diff --git a/src/routes/safe/components/Settings/ManageOwners/RemoveOwnerModal/screens/Review/index.tsx b/src/routes/safe/components/Settings/ManageOwners/RemoveOwnerModal/screens/Review/index.tsx index ece059c9..36ec7e79 100644 --- a/src/routes/safe/components/Settings/ManageOwners/RemoveOwnerModal/screens/Review/index.tsx +++ b/src/routes/safe/components/Settings/ManageOwners/RemoveOwnerModal/screens/Review/index.tsx @@ -216,16 +216,18 @@ export const ReviewRemoveOwnerModal = ({ isTransactionExecution={isExecution} /> - - - - + {txEstimationExecutionStatus === EstimationStatus.LOADING ? null : ( + + + + + )}