File tree Expand file tree Collapse file tree 2 files changed +19
-3
lines changed
packages/scaffold/src/modal/w3m-modal Expand file tree Collapse file tree 2 files changed +19
-3
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ ' @reown/appkit-scaffold-react-native ' : patch
3
+ ' @reown/appkit-auth-ethers-react-native ' : patch
4
+ ' @reown/appkit-auth-wagmi-react-native ' : patch
5
+ ' @reown/appkit-coinbase-ethers-react-native ' : patch
6
+ ' @reown/appkit-coinbase-wagmi-react-native ' : patch
7
+ ' @reown/appkit-common-react-native ' : patch
8
+ ' @reown/appkit-core-react-native ' : patch
9
+ ' @reown/appkit-ethers-react-native ' : patch
10
+ ' @reown/appkit-ethers5-react-native ' : patch
11
+ ' @reown/appkit-scaffold-utils-react-native ' : patch
12
+ ' @reown/appkit-siwe-react-native ' : patch
13
+ ' @reown/appkit-ui-react-native ' : patch
14
+ ' @reown/appkit-wagmi-react-native ' : patch
15
+ ' @reown/appkit-wallet-react-native ' : patch
16
+ ---
17
+
18
+ fix: disable coverscreen on root modal to solve issues with expo-router
Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ import {
16
16
TransactionsController ,
17
17
type CaipAddress ,
18
18
type AppKitFrameProvider ,
19
- WebviewController ,
20
19
ThemeController
21
20
} from '@reown/appkit-core-react-native' ;
22
21
import { SIWEController } from '@reown/appkit-siwe-react-native' ;
@@ -31,7 +30,6 @@ export function AppKit() {
31
30
const { open, loading } = useSnapshot ( ModalController . state ) ;
32
31
const { connectors, connectedConnector } = useSnapshot ( ConnectorController . state ) ;
33
32
const { caipAddress, isConnected } = useSnapshot ( AccountController . state ) ;
34
- const { frameViewVisible, webviewVisible } = useSnapshot ( WebviewController . state ) ;
35
33
const { themeMode, themeVariables } = useSnapshot ( ThemeController . state ) ;
36
34
const { height } = useWindowDimensions ( ) ;
37
35
const { isLandscape } = useCustomDimensions ( ) ;
@@ -121,7 +119,7 @@ export function AppKit() {
121
119
< ThemeProvider themeMode = { themeMode } themeVariables = { themeVariables } >
122
120
< Modal
123
121
style = { styles . modal }
124
- coverScreen = { ! frameViewVisible && ! webviewVisible }
122
+ coverScreen = { false }
125
123
isVisible = { open }
126
124
useNativeDriver
127
125
useNativeDriverForBackdrop
You can’t perform that action at this time.
0 commit comments