We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d96196c commit 123e5ffCopy full SHA for 123e5ff
web/components/templates/hql/hooks/useQueryExecution.ts
@@ -22,7 +22,7 @@ export function useQueryExecution() {
22
const [queryError, setQueryError] = useState<string | null>(null);
23
24
const { mutate: handleExecuteQuery, mutateAsync: handleExecuteQueryAsync } =
25
- useMutation<components["schemas"]["ExecuteSqlResponse"], Error, string>(
+ useMutation(
26
createExecuteQueryMutation(setResult, setQueryError, setQueryLoading)
27
);
28
@@ -38,4 +38,3 @@ export function useQueryExecution() {
38
};
39
}
40
41
-
0 commit comments