Skip to content

Commit

Permalink
"You're up next" alert should always be warning
Browse files Browse the repository at this point in the history
  • Loading branch information
jlost committed Dec 15, 2020
1 parent 9bb3960 commit c11a8df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/assets/src/components/queue.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ const WaitingTurnAlert = (props: WaitingTurnAlertProps) => {
? "It's not your turn yet, but the host may be ready for you at any time."
: "You're up next, but the host isn't quite ready for you.";
return (
<Alert variant={props.placeInLine > 0 ? 'warning' : 'success'}>
<Alert variant="warning">
{placeBeginning} Pay attention to this page {typeEnding}
</Alert>
);
Expand Down

0 comments on commit c11a8df

Please sign in to comment.