mirror of
https://github.com/BradNut/umami
synced 2025-09-08 17:40:29 +00:00
Fixed mutate.
This commit is contained in:
parent
a4f8ab6ad9
commit
905b480c13
1 changed files with 1 additions and 1 deletions
|
|
@ -14,7 +14,7 @@ export function ReportDeleteButton({
|
|||
}) {
|
||||
const { formatMessage, labels } = useMessages();
|
||||
const { del, useMutation } = useApi();
|
||||
const { mutate } = useMutation(reportId => del(`/reports/${reportId}`));
|
||||
const { mutate } = useMutation({ mutationFn: reportId => del(`/reports/${reportId}`) });
|
||||
|
||||
const handleConfirm = (close: () => void) => {
|
||||
mutate(reportId as any, {
|
||||
|
|
|
|||
Loading…
Reference in a new issue