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

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>
);
};