File size: 234 Bytes
b59aa07
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import { useMutation } from "@tanstack/react-query";
import { SecretsService } from "#/api/secrets-service";

export const useDeleteSecret = () =>
  useMutation({
    mutationFn: (id: string) => SecretsService.deleteSecret(id),
  });