Fixed typo in modal

This commit is contained in:
Ricardo Silverio 2023-12-21 22:55:15 -03:00
parent d268b4786a
commit fe11e45703

View File

@ -1,5 +1,5 @@
import React from 'react';
import Modal from 'components/Modal'; import Modal from 'components/Modal';
import React from 'react';
const ConfirmRequestClose = ({ onCancel, onCloseWithoutSave, onSaveAndClose }) => { const ConfirmRequestClose = ({ onCancel, onCloseWithoutSave, onSaveAndClose }) => {
const _handleCancel = ({ type }) => { const _handleCancel = ({ type }) => {
@ -22,7 +22,7 @@ const ConfirmRequestClose = ({ onCancel, onCloseWithoutSave, onSaveAndClose }) =
disableCloseOnOutsideClick={true} disableCloseOnOutsideClick={true}
closeModalFadeTimeout={150} 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> </Modal>
); );
}; };