diff --git a/web/components/answers/answer-bet-panel.tsx b/web/components/answers/answer-bet-panel.tsx index dbf7ff11..6e54b3b8 100644 --- a/web/components/answers/answer-bet-panel.tsx +++ b/web/components/answers/answer-bet-panel.tsx @@ -206,7 +206,7 @@ export function AnswerBetPanel(props: { )} onClick={betDisabled ? undefined : submitBet} > - {isSubmitting ? 'Submitting...' : 'Submit trade'} + {isSubmitting ? 'Submitting...' : 'Submit'} ) : ( diff --git a/web/components/buttons/pill-button.tsx b/web/components/buttons/pill-button.tsx index 8e47c94e..949aa428 100644 --- a/web/components/buttons/pill-button.tsx +++ b/web/components/buttons/pill-button.tsx @@ -5,19 +5,19 @@ export function PillButton(props: { selected: boolean onSelect: () => void color?: string - big?: boolean + xs?: boolean children: ReactNode }) { - const { children, selected, onSelect, color, big } = props + const { children, selected, onSelect, color, xs } = props return ( )}