File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
Aggregator/Views/Checkout
Deposit/Views/Modals/WebviewModal Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ import {
4040} from '../../../../../../component-library/components/Icons/Icon' ;
4141import { useStyles } from '../../../../../../component-library/hooks' ;
4242import styleSheet from './Checkout.styles' ;
43+ import Device from '../../../../../../util/device' ;
4344
4445interface CheckoutParams {
4546 url : string ;
@@ -256,6 +257,7 @@ const CheckoutWebView = () => {
256257 ref = { sheetRef }
257258 shouldNavigateBack
258259 isFullscreen
260+ isInteractable = { ! Device . isAndroid ( ) }
259261 keyboardAvoidingViewEnabled = { false }
260262 >
261263 < BottomSheetHeader
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ import { strings } from '../../../../../../../../locales/i18n';
2323import { useStyles } from '../../../../../../../component-library/hooks/useStyles' ;
2424import styleSheet from './WebviewModal.styles' ;
2525import ErrorView from '../../../components/ErrorView' ;
26+ import Device from '../../../../../../../util/device' ;
2627
2728export interface WebviewModalParams {
2829 sourceUrl : string ;
@@ -61,6 +62,7 @@ function WebviewModal() {
6162 ref = { sheetRef }
6263 shouldNavigateBack
6364 isFullscreen
65+ isInteractable = { ! Device . isAndroid ( ) }
6466 keyboardAvoidingViewEnabled = { false }
6567 >
6668 < BottomSheetHeader
You can’t perform that action at this time.
0 commit comments