Merge pull request #1266 from rsilvr/fix/confirm-close-typo

Fixed typo in modal
This commit is contained in:
Anoop M D 2023-12-22 12:41:36 +05:30 committed by GitHub
commit da983599ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 }) => {
@ -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>
);
};