Skip to content

Commit e92fdf0

Browse files
committedOct 12, 2021
Misc minor changes
1 parent 51f6319 commit e92fdf0

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed
 

‎src/components/WalletModal/ModalContent.tsx

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
import { Row, Col, Form, Button } from "react-bootstrap";
22
import { UnsupportedChainIdError } from "@web3-react/core";
3-
import { injected } from "../../connectors";
3+
import { useTranslation } from "react-i18next";
4+
import { isMobile } from "react-device-detect";
5+
import { SUPPORTED_WALLETS, injected } from "../../connectors";
46
import LedgerAccounts from "../LedgerAccounts";
57
import NetworkSelector from "../NetworkSelector";
68
import UIButton from "../UI/Button";
79
import WalletOption from "../WalletOption";
810
import * as Styled from "./styleds";
9-
import { useTranslation } from "react-i18next";
1011

1112
// TODO: duplicated, move to constants
1213
const WALLET_VIEWS = {

‎src/components/WalletModal/styleds.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { Link } from "react-router-dom";
33

44
export const Wrapper = styled.div`
55
display: flex;
6-
flex-flow: column nowrap;
6+
flex-flow: column nowrap;
77
margin: 0;
88
padding: 0;
99
width: 100%;

‎src/pages/CrossBridge/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ const MintHahshList = styled.div`
350350
cursor: pointer;
351351
margin: 0;
352352
353-
ul {
353+
ul {
354354
list-style: none;
355355
cursor: pointer;
356356
margin: 0;

0 commit comments

Comments
 (0)
Please sign in to comment.