Skip to content

Commit 607b7d8

Browse files
Merge pull request #340 from reown-com/develop
prep for v1.2.4
2 parents 6ae21eb + 620a157 commit 607b7d8

File tree

5 files changed

+25
-8
lines changed

5 files changed

+25
-8
lines changed

.changeset/thin-files-play.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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

.prettierignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/apps
2+
.yarn

.tool-versions

Lines changed: 0 additions & 1 deletion
This file was deleted.

apps/native/app.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"expo": {
33
"name": "native",
4-
"slug": "appkit-expo-sample",
4+
"slug": "appkit",
55
"version": "1.0.0",
66
"orientation": "default",
77
"icon": "./assets/icon.png",
@@ -19,7 +19,7 @@
1919
"runtimeVersion": {
2020
"policy": "appVersion"
2121
},
22-
"owner": "nacho.walletconnect",
22+
"owner": "nacho.reown",
2323
"assetBundlePatterns": ["**/*"],
2424
"plugins": ["./expo-plugins/installed-wallets.js"],
2525
"ios": {
@@ -68,7 +68,7 @@
6868
},
6969
"android": {
7070
"versionCode": 1,
71-
"package": "com.walletconnect.web3modal.rnsdk",
71+
"package": "com.reown.appkit.expo",
7272
"adaptiveIcon": {
7373
"foregroundImage": "./assets/adaptive-icon.png",
7474
"backgroundColor": "#FFFFFF"
@@ -84,7 +84,7 @@
8484
},
8585
"extra": {
8686
"eas": {
87-
"projectId": "2d3ad657-c612-4f65-ba0f-62c277388fa6"
87+
"projectId": "2325cd86-ac2f-4ecc-a094-6bb2276f2e8a"
8888
}
8989
}
9090
}

packages/scaffold/src/modal/w3m-modal/index.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ import {
1616
TransactionsController,
1717
type CaipAddress,
1818
type AppKitFrameProvider,
19-
WebviewController,
2019
ThemeController
2120
} from '@reown/appkit-core-react-native';
2221
import { SIWEController } from '@reown/appkit-siwe-react-native';
@@ -31,7 +30,6 @@ export function AppKit() {
3130
const { open, loading } = useSnapshot(ModalController.state);
3231
const { connectors, connectedConnector } = useSnapshot(ConnectorController.state);
3332
const { caipAddress, isConnected } = useSnapshot(AccountController.state);
34-
const { frameViewVisible, webviewVisible } = useSnapshot(WebviewController.state);
3533
const { themeMode, themeVariables } = useSnapshot(ThemeController.state);
3634
const { height } = useWindowDimensions();
3735
const { isLandscape } = useCustomDimensions();
@@ -121,7 +119,7 @@ export function AppKit() {
121119
<ThemeProvider themeMode={themeMode} themeVariables={themeVariables}>
122120
<Modal
123121
style={styles.modal}
124-
coverScreen={!frameViewVisible && !webviewVisible}
122+
coverScreen={false}
125123
isVisible={open}
126124
useNativeDriver
127125
useNativeDriverForBackdrop

0 commit comments

Comments
 (0)