From a4139104b51b056fee8c31a3abc403b95f8afd3e Mon Sep 17 00:00:00 2001 From: Sinclair Chen Date: Thu, 29 Sep 2022 20:52:49 -0700 Subject: [PATCH] lint --- web/components/add-funds-modal.tsx | 4 ++-- web/components/amount-input.tsx | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/web/components/add-funds-modal.tsx b/web/components/add-funds-modal.tsx index 072941ff..d61e7b21 100644 --- a/web/components/add-funds-modal.tsx +++ b/web/components/add-funds-modal.tsx @@ -1,5 +1,5 @@ -import { formatMoney, manaToUSD } from 'common/util/format' -import { useMemo, useState } from 'react' +import { manaToUSD } from 'common/util/format' +import { useState } from 'react' import { useUser } from 'web/hooks/use-user' import { checkoutURL } from 'web/lib/service/stripe' import { Button } from './button' diff --git a/web/components/amount-input.tsx b/web/components/amount-input.tsx index a3f767a3..cb8c2fce 100644 --- a/web/components/amount-input.tsx +++ b/web/components/amount-input.tsx @@ -3,7 +3,6 @@ import React, { useState } from 'react' import { useUser } from 'web/hooks/use-user' import { formatMoney } from 'common/util/format' import { Col } from './layout/col' -import { SiteLink } from './site-link' import { ENV_CONFIG } from 'common/envs/constants' import { useWindowSize } from 'web/hooks/use-window-size' import { Row } from './layout/row'