Skip to content

Commit 1e88129

Browse files
authored
Merge pull request #359 from blocknative/develop
Release 1.9.2
2 parents cb047ec + 8c0f521 commit 1e88129

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bnc-onboard",
3-
"version": "1.9.1",
3+
"version": "1.9.2",
44
"description": "Onboard users to web3 by allowing them to select a wallet, get that wallet ready to transact and have access to synced wallet state.",
55
"keywords": [
66
"ethereum",

src/modules/select/wallets/coinbase.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ function coinbase(options: CommonWalletOptions): WalletModule {
88

99
return {
1010
name: label || 'Coinbase',
11-
iconSrc: iconSrc || coinbaseIcon,
12-
svg,
11+
iconSrc,
12+
svg: svg || coinbaseIcon,
1313
wallet: async (helpers: Helpers) => {
1414
const { getProviderName, createLegacyProviderInterface } = helpers
1515
const provider =

src/modules/select/wallets/fortmatic.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ function fortmatic(
4747
.toString(10)
4848
: null
4949
)
50-
}
50+
},
51+
dashboard: () => instance.user.settings()
5152
}
5253
}
5354
},

0 commit comments

Comments
 (0)