Skip to content

Commit

Permalink
fix(ConfirmationModal) use base appearance for cancel btn
Browse files Browse the repository at this point in the history
  • Loading branch information
edlerd committed Oct 23, 2023
1 parent 4915006 commit 82fb7c6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/ConfirmationModal/ConfirmationModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,11 @@ export const ConfirmationModal = ({
buttonRow={
<>
{confirmExtra}
<Button className="u-no-margin--bottom" onClick={props.close}>
<Button
appearance="base"
className="u-no-margin--bottom"
onClick={props.close}
>
{cancelButtonLabel}
</Button>
<Button
Expand Down

0 comments on commit 82fb7c6

Please sign in to comment.