This commit is contained in:
ingawei 2022-09-14 13:28:52 -07:00
parent 13d12bbb2f
commit 957f880221
3 changed files with 2 additions and 3 deletions

View File

@ -59,7 +59,8 @@ export function Button(props: {
color === 'gray-white' &&
'text-greyscale-6 hover:bg-greyscale-2 border-none shadow-none',
color === 'highlight-blue' &&
'text-highlight-blue border-none shadow-none'
'text-highlight-blue border-none shadow-none',
className
)}
disabled={disabled}
onClick={onClick}

View File

@ -67,7 +67,6 @@ export function LikeMarketButton(props: {
{totalTipped}
</div>
)}
{/* Tip {totalTipped > 0 ? `(${formatMoney(totalTipped)})` : ''} */}
</Col>
</Button>
)

View File

@ -37,7 +37,6 @@ import { User } from 'common/user'
import { ContractComment } from 'common/comment'
import { getOpenGraphProps } from 'common/contract-details'
import { ContractDescription } from 'web/components/contract/contract-description'
import { ExtraContractActionsRow } from 'web/components/contract/extra-contract-actions-row'
import {
ContractLeaderboard,
ContractTopTrades,