diff --git a/web/components/contract/contract-overview.tsx b/web/components/contract/contract-overview.tsx
index 79d05ec2..fc962458 100644
--- a/web/components/contract/contract-overview.tsx
+++ b/web/components/contract/contract-overview.tsx
@@ -1,11 +1,9 @@
-<<<<<<< HEAD
import React from 'react'
import clsx from 'clsx'
+import toast from 'react-hot-toast'
+import { LinkIcon } from '@heroicons/react/outline'
-import { tradingAllowed } from 'web/lib/firebase/contracts'
-=======
import { contractUrl, tradingAllowed } from 'web/lib/firebase/contracts'
->>>>>>> 798253f8 (Challenge Bets (#679))
import { Col } from '../layout/col'
import { Spacer } from '../layout/spacer'
import { ContractProbGraph } from './contract-prob-graph'
@@ -25,16 +23,10 @@ import { Contract, CPMMBinaryContract } from 'common/contract'
import { ContractDescription } from './contract-description'
import { ContractDetails } from './contract-details'
import { NumericGraph } from './numeric-graph'
-<<<<<<< HEAD
import { ShareRow } from './share-row'
-=======
import { CreateChallengeButton } from 'web/components/challenges/create-challenge-button'
-import React from 'react'
import { copyToClipboard } from 'web/lib/util/copy'
-import toast from 'react-hot-toast'
-import { LinkIcon } from '@heroicons/react/outline'
import { CHALLENGES_ENABLED } from 'common/challenge'
->>>>>>> 798253f8 (Challenge Bets (#679))
export const ContractOverview = (props: {
contract: Contract
@@ -132,51 +124,12 @@ export const ContractOverview = (props: {
)}
{outcomeType === 'NUMERIC' && }
-<<<<<<< HEAD
-=======
- {/* {(contract.description || isCreator) && } */}
->>>>>>> 798253f8 (Challenge Bets (#679))
- {/**/}
- {/* {showChallenge && (*/}
- {/* */}
- {/* ⚔️ Challenge a friend ⚔️
*/}
- {/* */}
- {/* */}
- {/* )}*/}
- {/* {isCreator && (*/}
- {/* */}
- {/* Share your market
*/}
- {/* */}
- {/* */}
- {/* )}*/}
- {/*
*/}
-
- {showChallenge && (
-
-
-
- )}
- {isCreator && (
-
-
-
- )}
-
)
}