Skip to content

Commit

Permalink
Merge pull request #1266 from rsilvr/fix/confirm-close-typo
Browse files Browse the repository at this point in the history
Fixed typo in modal
  • Loading branch information
helloanoop authored Dec 22, 2023
2 parents d268b47 + fe11e45 commit da98359
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import Modal from 'components/Modal';
import React from 'react';

const ConfirmRequestClose = ({ onCancel, onCloseWithoutSave, onSaveAndClose }) => {
const _handleCancel = ({ type }) => {
Expand All @@ -22,7 +22,7 @@ const ConfirmRequestClose = ({ onCancel, onCloseWithoutSave, onSaveAndClose }) =
disableCloseOnOutsideClick={true}
closeModalFadeTimeout={150}
>
<div className="font-normal">You have unsaved changes in you request.</div>
<div className="font-normal">You have unsaved changes in your request.</div>
</Modal>
);
};
Expand Down

0 comments on commit da98359

Please sign in to comment.