We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82a568a commit bfddc56Copy full SHA for bfddc56
packages/core/src/index.ts
@@ -42,6 +42,7 @@ export type {
42
} from './types'
43
44
export type { EIP1193Provider } from '@web3-onboard/common'
45
+export { connectWallet$ } from './streams'
46
47
function init(options: InitOptions): OnboardAPI {
48
if (typeof window === 'undefined') return API
packages/core/src/views/connect/Index.svelte
@@ -193,6 +193,10 @@
193
connectionRejected = true
194
if (autoSelect) {
195
walletToAutoSelect = null
196
+
197
+ if (autoSelect.disableModals) {
198
+ connectWallet$.next({ inProgress: false })
199
+ }
200
}
201
return
202
0 commit comments