diff --git a/web/components/bet-panel.tsx b/web/components/bet-panel.tsx
index d8ed5667..dc5a9bb7 100644
--- a/web/components/bet-panel.tsx
+++ b/web/components/bet-panel.tsx
@@ -128,7 +128,7 @@ export function BetPanel(props: {
const currentReturn = betAmount ? (currentPayout - betAmount) / betAmount : 0
const currentReturnPercent = (currentReturn * 100).toFixed() + '%'
- const panelTitle = title ?? `Buy ${betChoice || 'shares'}`
+ const panelTitle = title ?? 'Place a trade'
if (title) {
focusAmountInput()
}
@@ -138,13 +138,13 @@ export function BetPanel(props: {
className={clsx('bg-gray-100 shadow-md px-8 py-6 rounded-md', className)}
>
- Outcome
+ {/* Outcome
*/}
onBetChoice(choice)}
/>
diff --git a/web/components/contract-card.tsx b/web/components/contract-card.tsx
index c1390cac..9f91d272 100644
--- a/web/components/contract-card.tsx
+++ b/web/components/contract-card.tsx
@@ -13,7 +13,6 @@ import { parseTags } from '../../common/util/parse'
import dayjs from 'dayjs'
import { TrendingUpIcon } from '@heroicons/react/solid'
import { DateTimeTooltip } from './datetime-tooltip'
-import { CompactTagsList } from './tags-list'
import { ClockIcon } from '@heroicons/react/outline'
import { fromNow } from '../lib/util/time'
diff --git a/web/components/follow-fold-button.tsx b/web/components/follow-fold-button.tsx
index 97e29deb..62a68e9a 100644
--- a/web/components/follow-fold-button.tsx
+++ b/web/components/follow-fold-button.tsx
@@ -28,10 +28,7 @@ export function FollowFoldButton(props: { fold: Fold; className?: string }) {
if (following) {
return (