diff --git a/src/features/recovery/components/RecoveryDescription/index.tsx b/src/features/recovery/components/RecoveryDescription/index.tsx
index d30df5324a..707e7964db 100644
--- a/src/features/recovery/components/RecoveryDescription/index.tsx
+++ b/src/features/recovery/components/RecoveryDescription/index.tsx
@@ -51,13 +51,9 @@ export function RecoveryDescription({ item }: { item: RecoveryQueueItem }): Reac
{newSetup.owners.map((owner) => (
))}
+
-
+
Required confirmations for new transactions:
diff --git a/src/features/recovery/components/RecoverySettings/index.tsx b/src/features/recovery/components/RecoverySettings/index.tsx
index c6d5af78f9..0aa340ddec 100644
--- a/src/features/recovery/components/RecoverySettings/index.tsx
+++ b/src/features/recovery/components/RecoverySettings/index.tsx
@@ -113,31 +113,15 @@ function RecoverySettings(): ReactElement {
-
-
+
+
Account recovery
-
+
{isRecoveryEnabled
? 'The trusted Recoverer will be able to recover your Safe Account if you ever lose access. You can change Recoverers or alter your recovery setup at any time.'
: 'Choose a trusted Recoverer to recover your Safe Account if you ever lose access. Enabling the Account recovery module will require a transaction.'}{' '}
diff --git a/src/features/recovery/components/RecoverySummary/index.tsx b/src/features/recovery/components/RecoverySummary/index.tsx
index 23f1b26292..e3fdd022c4 100644
--- a/src/features/recovery/components/RecoverySummary/index.tsx
+++ b/src/features/recovery/components/RecoverySummary/index.tsx
@@ -18,46 +18,24 @@ export function RecoverySummary({ item }: { item: RecoveryQueueItem }): ReactEle
return (
-
+
-
+
+
-
+
+
+
{!isExecutable || isPending ? (
-
+
) : (
-
+
{!isMalicious && wallet && }
)}
diff --git a/src/features/siweAccounts/components/EnableAccountBanner/index.tsx b/src/features/siweAccounts/components/EnableAccountBanner/index.tsx
index 513ef68ee6..126c3d750b 100644
--- a/src/features/siweAccounts/components/EnableAccountBanner/index.tsx
+++ b/src/features/siweAccounts/components/EnableAccountBanner/index.tsx
@@ -42,12 +42,7 @@ const SignInBanner = ({ provider }: { provider: BrowserProvider | undefined }) =
action={
<>
} sx={{ padding: '2px', minWidth: '130px' }}>
-
+
Enable now
@@ -64,19 +59,8 @@ const SignInBanner = ({ provider }: { provider: BrowserProvider | undefined }) =
>
}
>
-
-
+
+
Access your accounts on any device! Enable cloud storage to switch devices effortlessly and keep your
data secure.
diff --git a/src/features/speedup/components/SpeedUpModal.tsx b/src/features/speedup/components/SpeedUpModal.tsx
index 30f46e9861..767e8932d7 100644
--- a/src/features/speedup/components/SpeedUpModal.tsx
+++ b/src/features/speedup/components/SpeedUpModal.tsx
@@ -167,35 +167,19 @@ export const SpeedUpModal = ({
return (
-
+
This will speed up the pending transaction by{' '}
-
+
replacing
{' '}
the original gas parameters with new ones.
-
+
{speedUpFee && signerNonce && (
+
@@ -241,14 +226,7 @@ export const SpeedUpModal = ({
return (
-
+
diff --git a/src/features/stake/components/StakingTxExitDetails/index.tsx b/src/features/stake/components/StakingTxExitDetails/index.tsx
index 30ffa0896a..d4cdb80722 100644
--- a/src/features/stake/components/StakingTxExitDetails/index.tsx
+++ b/src/features/stake/components/StakingTxExitDetails/index.tsx
@@ -14,14 +14,7 @@ const StakingTxExitDetails = ({ info }: { info: StakingTxExitInfo }) => {
])
return (
-
+
{info.validators.map((validator: string, index: number) => {
return (
@@ -33,6 +26,7 @@ const StakingTxExitDetails = ({ info }: { info: StakingTxExitInfo }) => {
})}
{info.status !== NativeStakingStatus.EXITED && Up to {withdrawIn}}
+
diff --git a/src/features/stake/components/StakingTxWithdrawDetails/index.tsx b/src/features/stake/components/StakingTxWithdrawDetails/index.tsx
index 1a20e647fc..78681f19d0 100644
--- a/src/features/stake/components/StakingTxWithdrawDetails/index.tsx
+++ b/src/features/stake/components/StakingTxWithdrawDetails/index.tsx
@@ -4,15 +4,7 @@ import StakingConfirmationTxWithdraw from '@/features/stake/components/StakingCo
const StakingTxWithdrawDetails = ({ info }: { info: StakingTxWithdrawInfo }) => {
return (
-
+
)
diff --git a/src/features/swap/components/OrderId/index.tsx b/src/features/swap/components/OrderId/index.tsx
index 8179d25ea7..e128adb8eb 100644
--- a/src/features/swap/components/OrderId/index.tsx
+++ b/src/features/swap/components/OrderId/index.tsx
@@ -21,11 +21,7 @@ const OrderId = ({
{truncatedOrderId}
{showCopyButton && }
-
+
diff --git a/src/features/swap/components/SwapOrder/rows/PartBuyAmount.tsx b/src/features/swap/components/SwapOrder/rows/PartBuyAmount.tsx
index 7911af2b7b..5076242c14 100644
--- a/src/features/swap/components/SwapOrder/rows/PartBuyAmount.tsx
+++ b/src/features/swap/components/SwapOrder/rows/PartBuyAmount.tsx
@@ -15,20 +15,10 @@ export const PartBuyAmount = ({
return (
-
+
{formatVisualAmount(minPartLimit, buyToken.decimals)} {buyToken.symbol}
-
+
{` ${addonText}`}
diff --git a/src/features/swap/components/SwapOrder/rows/PartSellAmount.tsx b/src/features/swap/components/SwapOrder/rows/PartSellAmount.tsx
index 2346dc5b2d..ac8fcf13b6 100644
--- a/src/features/swap/components/SwapOrder/rows/PartSellAmount.tsx
+++ b/src/features/swap/components/SwapOrder/rows/PartSellAmount.tsx
@@ -15,20 +15,10 @@ export const PartSellAmount = ({
return (
-
+
{formatVisualAmount(partSellAmount, sellToken.decimals)} {sellToken.symbol}
-
+
{` ${addonText}`}
diff --git a/src/features/swap/components/SwapOrderConfirmationView/index.tsx b/src/features/swap/components/SwapOrderConfirmationView/index.tsx
index a1feae9bbb..13392a847d 100644
--- a/src/features/swap/components/SwapOrderConfirmationView/index.tsx
+++ b/src/features/swap/components/SwapOrderConfirmationView/index.tsx
@@ -44,6 +44,7 @@ export const SwapOrderConfirmation = ({ order, decodedData, settlementContract }
return (
<>
{isChangingFallbackHandler && }
+
-
+
{formatTimeInWords(validUntil * 1000)}
{' '}
({formatDateTime(validUntil * 1000)})
@@ -124,6 +120,7 @@ export const SwapOrderConfirmation = ({ order, decodedData, settlementContract }
),
]}
/>
+
{isTwapOrder && (
(
)
const OnlyToken = ({ token }: { token: OrderToken }) => (
-
+
{token.symbol}
@@ -43,22 +35,15 @@ export const SwapTx = ({ info }: { info: Order }): ReactElement => {
return (
{from}
-
+
to
{to}
diff --git a/src/features/walletconnect/components/WcConnectionState/index.tsx b/src/features/walletconnect/components/WcConnectionState/index.tsx
index e48d608677..d3f4284e72 100644
--- a/src/features/walletconnect/components/WcConnectionState/index.tsx
+++ b/src/features/walletconnect/components/WcConnectionState/index.tsx
@@ -24,12 +24,8 @@ const WcConnectionState = ({ metadata, isDelete }: { metadata?: CoreTypes.Metada
-
+
+
{isDelete ? `${name} disconnected` : `${name} successfully connected!`}
diff --git a/src/features/walletconnect/components/WcErrorMessage/index.tsx b/src/features/walletconnect/components/WcErrorMessage/index.tsx
index e14144925b..05454ab393 100644
--- a/src/features/walletconnect/components/WcErrorMessage/index.tsx
+++ b/src/features/walletconnect/components/WcErrorMessage/index.tsx
@@ -10,16 +10,13 @@ const WcErrorMessage = ({ error, onClose }: { error: Error; onClose: () => void
return (
+
{details && (
-
+
{details}
)}
+
diff --git a/src/features/walletconnect/components/WcHints/index.tsx b/src/features/walletconnect/components/WcHints/index.tsx
index defb6b04df..8123a20c2b 100644
--- a/src/features/walletconnect/components/WcHints/index.tsx
+++ b/src/features/walletconnect/components/WcHints/index.tsx
@@ -85,13 +85,7 @@ const WcHints = (): ReactElement => {
}
return (
-
+
{errorMessage && }
-
+
+
{errorMessage || 'Connect dApps to Safe{Wallet}'}
>
diff --git a/src/features/walletconnect/components/WcProposalForm/CompatibilityWarning.tsx b/src/features/walletconnect/components/WcProposalForm/CompatibilityWarning.tsx
index cb6c4384ea..68f748f504 100644
--- a/src/features/walletconnect/components/WcProposalForm/CompatibilityWarning.tsx
+++ b/src/features/walletconnect/components/WcProposalForm/CompatibilityWarning.tsx
@@ -32,14 +32,10 @@ export const CompatibilityWarning = ({
{message}
+
{isUnsupportedChain && (
<>
-
+
Supported networks
@@ -49,12 +45,7 @@ export const CompatibilityWarning = ({
))}
-