Skip to content

Commit

Permalink
fix(wc): extra slash in icon path (#4011)
Browse files Browse the repository at this point in the history
### Description

Title says it all ;)

### Test plan

N/A

### Related issues

N/A

### Backwards compatibility

Yes
  • Loading branch information
jeanregisser authored Jul 28, 2023
1 parent 7dc08b0 commit 9c0058c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/walletConnect/saga.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ function createSession(proposerMetadata: CoreTypes.Metadata): SessionTypes.Struc
expiry: 1671006057,
self: {
metadata: {
icons: ['https://valoraapp.com//favicon.ico'],
icons: ['https://valoraapp.com/favicon.ico'],
description: 'A mobile payments wallet that works worldwide',
name: 'Valora',
url: 'https://valoraapp.com/',
Expand Down
2 changes: 1 addition & 1 deletion src/walletConnect/saga.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ function* createWalletConnectChannel() {
name: APP_NAME,
description: i18n.t('appDescription'),
url: WEB_LINK,
icons: [appendPath(WEB_LINK, '/favicon.ico')],
icons: [appendPath(WEB_LINK, 'favicon.ico')],
redirect: {
native: 'celo://wallet/wc',
universal: 'https://valoraapp.com/wc',
Expand Down
2 changes: 1 addition & 1 deletion src/walletConnect/screens/ActionRequest.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ describe('ActionRequest with WalletConnect V2', () => {
expiry: 1670411909,
self: {
metadata: {
icons: ['https://valoraapp.com//favicon.ico'],
icons: ['https://valoraapp.com/favicon.ico'],
description: 'A mobile payments wallet that works worldwide',
name: 'Valora',
url: 'https://valoraapp.com/',
Expand Down

0 comments on commit 9c0058c

Please sign in to comment.