pl-fe: cleanup

Signed-off-by: mkljczk <git@mkljczk.pl>
This commit is contained in:
mkljczk 2024-12-04 17:07:05 +01:00
parent 200fc5a5cc
commit 615f2cb0cc

View file

@ -31,8 +31,6 @@ const DraftStatusActionBar: React.FC<IDraftStatusActionBar> = ({ source, status
const dispatch = useAppDispatch();
const handleCancelClick = () => {
dispatch((_, getState) => {
const deleteModal = settings.deleteModal;
if (!deleteModal) {
dispatch(cancelDraftStatus(source.draft_id));
@ -44,7 +42,6 @@ const DraftStatusActionBar: React.FC<IDraftStatusActionBar> = ({ source, status
onConfirm: () => dispatch(cancelDraftStatus(source.draft_id)),
});
}
});
};
const handleEditClick = () => {