Skip to content

Commit

Permalink
Apply format
Browse files Browse the repository at this point in the history
  • Loading branch information
M-Picco committed Jul 7, 2023
1 parent cdf71ea commit da577c5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/contexts/AlgorandWalletContext.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const getAlgorandWallets = (): AlgorandWallet[] => {
new DeflyWallet({}),
new AlgorandLedgerWallet(),
];
}
};

export const useAlgorandWallet = () => {
const wallet = useWallet(CHAIN_ID_ALGORAND);
Expand Down
8 changes: 6 additions & 2 deletions src/contexts/EthereumProviderContext.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
import { isEVMChain } from "@certusone/wormhole-sdk";
import { ChainId } from "@xlabs-libs/wallet-aggregator-core";
import { EVMWallet, InjectedWallet, WalletConnectWallet } from "@xlabs-libs/wallet-aggregator-evm";
import {
EVMWallet,
InjectedWallet,
WalletConnectWallet,
} from "@xlabs-libs/wallet-aggregator-evm";
import { useWallet } from "@xlabs-libs/wallet-aggregator-react";
import { ethers } from "ethers";
import { useEffect, useMemo, useState } from "react";
Expand Down Expand Up @@ -28,7 +32,7 @@ export const getEvmWallets = (): EVMWallet[] => {
name: "Wormhole Portal Bridge",
description: "Wormhole Portal Bridge",
icons: ["https://portalbridge.com/favicon.ico"],
}
},
},
}),
];
Expand Down
2 changes: 1 addition & 1 deletion src/muiTheme.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export const theme = responsiveFontSizes(
},
},
zIndex: {
modal: 50
modal: 50,
},
overrides: {
MuiCssBaseline: {
Expand Down

0 comments on commit da577c5

Please sign in to comment.