From 2b7a582fe2f0eefbc7b201f11459f322df4c7d60 Mon Sep 17 00:00:00 2001 From: ingawei Date: Thu, 29 Sep 2022 17:49:51 -0700 Subject: [PATCH] linting --- web/components/scroll-to-top-button.tsx | 2 -- web/pages/[username]/[contractSlug].tsx | 3 --- 2 files changed, 5 deletions(-) diff --git a/web/components/scroll-to-top-button.tsx b/web/components/scroll-to-top-button.tsx index ffe001f3..7420c7b7 100644 --- a/web/components/scroll-to-top-button.tsx +++ b/web/components/scroll-to-top-button.tsx @@ -1,7 +1,5 @@ -import { ArrowCircleUpIcon, ArrowUpIcon } from '@heroicons/react/solid' import clsx from 'clsx' import { useEffect, useState } from 'react' -import { Button } from './button' import { Row } from './layout/row' export function ScrollToTopButton(props: { className?: string }) { diff --git a/web/pages/[username]/[contractSlug].tsx b/web/pages/[username]/[contractSlug].tsx index 6dacdde2..9b8b21cb 100644 --- a/web/pages/[username]/[contractSlug].tsx +++ b/web/pages/[username]/[contractSlug].tsx @@ -42,9 +42,6 @@ import { ContractsGrid } from 'web/components/contract/contracts-grid' import { Title } from 'web/components/title' import { usePrefetch } from 'web/hooks/use-prefetch' import { useAdmin } from 'web/hooks/use-admin' -import { BetSignUpPrompt } from 'web/components/sign-up-prompt' -import { PlayMoneyDisclaimer } from 'web/components/play-money-disclaimer' -import BetButton from 'web/components/bet-button' import { BetsSummary } from 'web/components/bet-summary' import { listAllComments } from 'web/lib/firebase/comments' import { ContractComment } from 'common/comment'