Skip to content

Commit

Permalink
Sentence case wizard cancelation buttons (#3721)
Browse files Browse the repository at this point in the history
  • Loading branch information
halocline authored Feb 13, 2024
1 parent 14b049a commit 6222cc4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ export const CancellationLayer = ({ onSetOpen, ...rest }) => {
justify="end"
>
<Button
label="No, Stay"
label="No, stay"
onClick={() => onSetOpen(false)}
secondary
fill={!['xsmall', 'small'].includes(size) ? false : 'horizontal'}
/>
<Button
label="Yes, Exit"
label="Yes, exit"
fill={!['xsmall', 'small'].includes(size) ? false : 'horizontal'}
onClick={() => {
onSetOpen(false);
Expand Down

0 comments on commit 6222cc4

Please sign in to comment.