mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 21:30:31 +00:00
wip
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
// @ts-nocheck
|
||||
import { DialogsName } from '@/constants/dialogs';
|
||||
import { useValidateBulkDeleteItems } from '@/hooks/query/items';
|
||||
import { useBulkDeleteDialog } from '@/hooks/dialogs/useBulkDeleteDialog';
|
||||
|
||||
export const useBulkDeleteItemsDialog = () => {
|
||||
const validateBulkDeleteMutation = useValidateBulkDeleteItems();
|
||||
|
||||
return useBulkDeleteDialog(
|
||||
DialogsName.ItemBulkDelete,
|
||||
validateBulkDeleteMutation,
|
||||
);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user