Kill dead code

This commit is contained in:
Marshall Polaris 2022-09-01 14:56:02 -07:00
parent 7508d86c73
commit 0791f77247

View File

@ -116,25 +116,6 @@ export function AvatarDetails(props: {
)
}
export function AbbrContractDetails(props: {
contract: Contract
showHotVolume?: boolean
showTime?: ShowTime
}) {
const { contract, showHotVolume, showTime } = props
return (
<Row className="items-center justify-between">
<AvatarDetails contract={contract} />
<MiscDetails
contract={contract}
showHotVolume={showHotVolume}
showTime={showTime}
/>
</Row>
)
}
export function ContractDetails(props: {
contract: Contract
disabled?: boolean