Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
esaminu committed Oct 31, 2023
1 parent db25fc9 commit 4f519d4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/CreateAccount/CreateAccount.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import InputContainer from './styles/InputContainer';
import { Button } from '../../lib/Button';
import { openToast } from '../../lib/Toast';
import { inIframe, redirectWithError } from '../../utils';
import { basePath, network } from '../../utils/config';
import { network } from '../../utils/config';
import {
accountAddressPatternNoSubaccount, emailPattern, getEmailId, isValidEmail
} from '../../utils/form-validation';
Expand Down
2 changes: 1 addition & 1 deletion src/components/Sign/Sign.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ import ArrowUpSvg from '../../Images/arrow-up';
import InternetSvg from '../../Images/Internet';
import { Button } from '../../lib/Button';
import { useAuthState } from '../../lib/useAuthState';
import { redirectWithError } from '../../utils';
import { basePath, network } from '../../utils/config';
import TableContent from '../TableContent/TableContent';
import { redirectWithError } from '../../utils';

const formatActionType = (action: string) => {
switch (action) {
Expand Down
2 changes: 1 addition & 1 deletion src/components/VerifyEmail/verify-email.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import styled from 'styled-components';
import EmailSvg from './icons/EmailSvg';
import { Button } from '../../lib/Button';
import { openToast } from '../../lib/Toast';
import { redirectWithError } from '../../utils';
import { basePath } from '../../utils/config';
import { firebaseAuth } from '../../utils/firebase';
import { redirectWithError } from '../../utils';

const StyledContainer = styled.div`
width: 100%;
Expand Down
2 changes: 1 addition & 1 deletion src/utils/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { basePath } from "./config";
import { basePath } from './config';

/* eslint-disable import/prefer-default-export */
export function inIframe() {
Expand Down

0 comments on commit 4f519d4

Please sign in to comment.