diff --git a/apps/web/src/components/tx/confirmation-views/index.tsx b/apps/web/src/components/tx/confirmation-views/index.tsx
index 5c080564de..2a80b18587 100644
--- a/apps/web/src/components/tx/confirmation-views/index.tsx
+++ b/apps/web/src/components/tx/confirmation-views/index.tsx
@@ -11,6 +11,7 @@ import {
isSafeToL2MigrationTxData,
isSafeUpdateTxData,
isSwapOrderTxInfo,
+ isTwapOrderTxInfo,
} from '@/utils/transaction-guards'
import { type ReactNode, useContext, useMemo } from 'react'
import TxData from '@/components/transactions/TxDetails/TxData'
@@ -55,7 +56,7 @@ const getConfirmationViewComponent = ({
if (isExecTxData(txData)) return
- if (isSwapOrderTxInfo(txInfo)) return
+ if (isSwapOrderTxInfo(txInfo) || isTwapOrderTxInfo(txInfo)) return
if (isAnyStakingTxInfo(txInfo)) return