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

@ -41,7 +41,7 @@ export default function BetButton(props: {
)} )}
onClick={() => setOpen(true)} onClick={() => setOpen(true)}
> >
Weigh in Trade
</Button> </Button>
) : ( ) : (
<BetSignUpPrompt /> <BetSignUpPrompt />

View File

@ -751,7 +751,7 @@ function QuickOrLimitBet(props: {
return ( return (
<Row className="align-center mb-4 justify-between"> <Row className="align-center mb-4 justify-between">
<div className="mr-2 -ml-2 shrink-0 text-3xl sm:-ml-0 sm:text-4xl"> <div className="mr-2 -ml-2 shrink-0 text-3xl sm:-ml-0 sm:text-4xl">
Weigh in Trade
</div> </div>
{!hideToggle && ( {!hideToggle && (
<Row className="mt-1 ml-1 items-center gap-1.5 sm:ml-0 sm:gap-2"> <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} size={size}
color="gradient" color="gradient"
> >
{label ?? 'Sign up to weigh in!'} {label ?? 'Sign up to trade!'}
</Button> </Button>
) : null ) : null
} }