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' && color === 'gray-white' &&
'text-greyscale-6 hover:bg-greyscale-2 border-none shadow-none', 'text-greyscale-6 hover:bg-greyscale-2 border-none shadow-none',
color === 'highlight-blue' && color === 'highlight-blue' &&
'text-highlight-blue border-none shadow-none' 'text-highlight-blue border-none shadow-none',
className
)} )}
disabled={disabled} disabled={disabled}
onClick={onClick} onClick={onClick}

View File

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

View File

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