weighing in and trading "weigh in" for "trade"

This commit is contained in:
mantikoros 2022-09-08 00:16:48 -05:00
parent 004671f032
commit edbebb7e67
3 changed files with 4 additions and 4 deletions

View File

@ -36,12 +36,12 @@ export default function BetButton(props: {
<Button
size="lg"
className={clsx(
'my-auto inline-flex min-w-[75px] whitespace-nowrap ',
'my-auto inline-flex min-w-[75px] whitespace-nowrap',
btnClassName
)}
onClick={() => setOpen(true)}
>
Weigh in
Trade
</Button>
) : (
<BetSignUpPrompt />

View File

@ -751,7 +751,7 @@ function QuickOrLimitBet(props: {
return (
<Row className="align-center mb-4 justify-between">
<div className="mr-2 -ml-2 shrink-0 text-3xl sm:-ml-0 sm:text-4xl">
Weigh in
Trade
</div>
{!hideToggle && (
<Row className="mt-1 ml-1 items-center gap-1.5 sm:ml-0 sm:gap-2">

View File

@ -19,7 +19,7 @@ export function BetSignUpPrompt(props: {
size={size}
color="gradient"
>
{label ?? 'Sign up to weigh in!'}
{label ?? 'Sign up to trade!'}
</Button>
) : null
}