Skip to content

Commit

Permalink
Fwf 2702/delete confirmation modal change (AOT-Technologies#1659)
Browse files Browse the repository at this point in the history
* Updated cancel button on delete modal

* typo fixed
  • Loading branch information
Bonymol-aot authored Oct 24, 2023
1 parent 63f73b0 commit 991c295
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions forms-flow-web/src/containers/Confirm.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,16 @@ const Confirm = React.memo((props) => {
</Modal.Header>
<Modal.Body>{message}</Modal.Body>
<Modal.Footer>
<button
type="button"
className="btn btn-link text-dark"
onClick={onNo}>
{noText}</button>

<Button className="btn btn-default" onClick={onYes}>
{yesText}
</Button>
<Button
variant="danger"
className="cancel_button mr-3"
onClick={onNo}
>
{noText}
</Button>

</Modal.Footer>
</Modal>
</>
Expand Down

0 comments on commit 991c295

Please sign in to comment.