Skip to content

Commit

Permalink
feat: Added AXS wallet to wallet list
Browse files Browse the repository at this point in the history
  • Loading branch information
reasje committed Sep 6, 2023
1 parent b007086 commit 5c92c8f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions public/icons/wallets/axs.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions src/components/WalletConnection/WalletSelector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ const WalletRow = ({ walletName, walletType }: WalletRowProps) => {
case WalletType.INJECTED:
return (
<img
src={`/icons/wallets/browserWallet.svg`}
src={`/icons/wallets/axs.svg`}
width="24px"
height="24px"
alt={`browser wallet icon`}
alt={`AXS wallet icon`}
/>
);
case WalletType.WALLET_CONNECT:
Expand Down Expand Up @@ -192,8 +192,8 @@ export const WalletSelector = () => {
<TxModalTitle title="Connect a wallet" />
{error && <Warning severity="error">{handleBlocking()}</Warning>}
<WalletRow
key="browser_wallet"
walletName="Browser wallet"
key="axs_wallet"
walletName="AXS Wallet"
walletType={WalletType.INJECTED}
/>
<WalletRow
Expand Down

0 comments on commit 5c92c8f

Please sign in to comment.