diff --git a/web/components/button.tsx b/web/components/button.tsx index b27f43a4..ea9a3e88 100644 --- a/web/components/button.tsx +++ b/web/components/button.tsx @@ -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} diff --git a/web/components/contract/like-market-button.tsx b/web/components/contract/like-market-button.tsx index c5e596d8..01dce32f 100644 --- a/web/components/contract/like-market-button.tsx +++ b/web/components/contract/like-market-button.tsx @@ -67,7 +67,6 @@ export function LikeMarketButton(props: { {totalTipped} )} - {/* Tip {totalTipped > 0 ? `(${formatMoney(totalTipped)})` : ''} */} ) diff --git a/web/pages/[username]/[contractSlug].tsx b/web/pages/[username]/[contractSlug].tsx index 9f5c0b40..11af5d30 100644 --- a/web/pages/[username]/[contractSlug].tsx +++ b/web/pages/[username]/[contractSlug].tsx @@ -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,