We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c466b11 commit 576b3adCopy full SHA for 576b3ad
ui/pages/routes/confirmation-handler.tsx
@@ -85,8 +85,8 @@ export const ConfirmationHandler = () => {
85
// Ported from home.component - componentDidMount/componentDidUpdate
86
useEffect(() => {
87
// In fullscreen, skip navigation for dapp confirmations (they open in Dialog windows)
88
- // but allow wallet-initiated snap flows
89
- if (isFullscreen && !hasWalletInitiatedSnapApproval) {
+ // but allow wallet-initiated snap flows and approval flows (e.g., smart transactions)
+ if (isFullscreen && !hasWalletInitiatedSnapApproval && !hasApprovalFlows) {
90
return;
91
}
92
0 commit comments