- {show ? (
-
- {loading && }
-
- setLoading(false)}
- showViewFinder={false}
- onError={onError}
- onScan={onScan}
- style={{ width: '100%' }}
- />
-
-
- ) : (
-
-
-
-
- )}
-
- )
-}
diff --git a/wallets/react-wallet-eip155/src/components/RelayRegionPicker.tsx b/wallets/react-wallet-eip155/src/components/RelayRegionPicker.tsx
deleted file mode 100644
index e070071..0000000
--- a/wallets/react-wallet-eip155/src/components/RelayRegionPicker.tsx
+++ /dev/null
@@ -1,29 +0,0 @@
-import { REGIONALIZED_RELAYER_ENDPOINTS } from '@/data/RelayerRegions'
-import { useState } from 'react'
-import { core } from '../utils/WalletConnectUtil'
-
-export default function AccountPicker() {
- const [region, setRegion] = useState('')
-
- async function onSelect(newRegion: string) {
- await core.relayer.transportClose()
- await core.relayer.transportOpen(newRegion)
- setRegion(newRegion)
- }
-
- return (
-