Skip to content

Commit

Permalink
Disable wallet connect on ios temporaily
Browse files Browse the repository at this point in the history
  • Loading branch information
Thunnini committed Jan 15, 2024
1 parent 3e5f017 commit af0ad43
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/mobile/src/stores/wallet-connect/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {Buffer} from 'buffer/';
import {KVStore} from '@keplr-wallet/common';
import Long from 'long';
import {ChainIdHelper} from '@keplr-wallet/cosmos';
import {AppState, Linking} from 'react-native';
import {AppState, Linking, Platform} from 'react-native';
import {Key} from '@keplr-wallet/types';
import {
KeyRingStore,
Expand Down Expand Up @@ -111,6 +111,9 @@ export class WalletConnectStore {
if (!projectId) {
return;
}
if (Platform.OS === 'ios') {
return;
}

const signClient = await SignClient.init({
projectId: projectId,
Expand Down

0 comments on commit af0ad43

Please sign in to comment.