aboutsummaryrefslogtreecommitdiff
path: root/packages/demobank-ui/src/pages/WalletWithdrawForm.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/demobank-ui/src/pages/WalletWithdrawForm.tsx')
-rw-r--r--packages/demobank-ui/src/pages/WalletWithdrawForm.tsx3
1 files changed, 3 insertions, 0 deletions
diff --git a/packages/demobank-ui/src/pages/WalletWithdrawForm.tsx b/packages/demobank-ui/src/pages/WalletWithdrawForm.tsx
index 6e13ae657..c04e85e0c 100644
--- a/packages/demobank-ui/src/pages/WalletWithdrawForm.tsx
+++ b/packages/demobank-ui/src/pages/WalletWithdrawForm.tsx
@@ -235,10 +235,12 @@ export function WalletWithdrawForm({
focus,
limit,
onCancel,
+ onAuthorizationRequired,
goToConfirmOperation,
}: {
limit: AmountJson;
focus?: boolean;
+ onAuthorizationRequired: () => void,
goToConfirmOperation: (operationId: string) => void;
onCancel: () => void;
}): VNode {
@@ -274,6 +276,7 @@ export function WalletWithdrawForm({
:
<OperationState
currency={limit.currency}
+ onAuthorizationRequired={onAuthorizationRequired}
onClose={onCancel}
/>
}