fix(core): do not delete tag on cancel (#8776)

This commit is contained in:
pengx17
2024-11-11 12:10:57 +00:00
parent 64674a539f
commit b3749246f6

View File

@@ -62,7 +62,7 @@ export const useDeleteTagConfirmModal = () => {
handleClose(true);
},
onCancel: () => {
handleClose(true);
handleClose(false);
},
onOpenChange: state => {
handleClose(state);