File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
src/components/FindWallet/WalletTable Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -330,7 +330,7 @@ const WalletTable = ({
330
330
} )
331
331
}
332
332
333
- const handleClick = ( walletName : string ) => {
333
+ const handleWalletWebsiteClick = ( walletName : string ) => {
334
334
trackCustomEvent ( {
335
335
eventCategory : "WalletExternalLinkList" ,
336
336
eventAction : "Tap main button" ,
@@ -438,7 +438,9 @@ const WalletTable = ({
438
438
w = "auto"
439
439
isExternal
440
440
size = "sm"
441
- onClick = { ( ) => handleClick ( wallet . name ) }
441
+ onClick = { ( ) =>
442
+ handleWalletWebsiteClick ( wallet . name )
443
+ }
442
444
>
443
445
{ t ( "page-find-wallet-visit-website" ) }
444
446
</ ButtonLink >
@@ -465,7 +467,7 @@ const WalletTable = ({
465
467
w = "100%"
466
468
isExternal
467
469
size = "sm"
468
- onClick = { ( ) => handleClick ( wallet . name ) }
470
+ onClick = { ( ) => handleWalletWebsiteClick ( wallet . name ) }
469
471
>
470
472
{ t ( "page-find-wallet-visit-website" ) }
471
473
</ ButtonLink >
You can’t perform that action at this time.
0 commit comments