diff --git a/web/components/contract-overview.tsx b/web/components/contract-overview.tsx
index e5ac8bb2..bf2be78d 100644
--- a/web/components/contract-overview.tsx
+++ b/web/components/contract-overview.tsx
@@ -1,12 +1,7 @@
-import {
- Contract,
- deleteContract,
- tradingAllowed,
-} from '../lib/firebase/contracts'
+import { Contract, tradingAllowed } from '../lib/firebase/contracts'
import { Col } from './layout/col'
import { Spacer } from './layout/spacer'
import { ContractProbGraph } from './contract-prob-graph'
-import router from 'next/router'
import { useUser } from '../hooks/use-user'
import { Row } from './layout/row'
import { Linkify } from './linkify'
@@ -110,22 +105,6 @@ export const ContractOverview = (props: {
)}
- {/* Show a delete button for contracts without any trading */}
- {isCreator && bets.length === 0 && (
- <>
-
- >
- )}
-