We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e04c26d commit b0f0cfbCopy full SHA for b0f0cfb
static/app/views/automations/hooks/index.ts
@@ -8,12 +8,12 @@ export interface UseAutomationsQueryOptions {
8
sort?: string;
9
}
10
export function useAutomationsQuery(_options: UseAutomationsQueryOptions = {}) {
11
- const { slug } = useOrganization();
+ const {slug} = useOrganization();
12
13
return useApiQuery<Automation[]>([`/organizations/${slug}/workflows/`], {
14
staleTime: 0,
15
retry: false,
16
- })
+ });
17
18
19
export const makeAutomationQueryKey = (
0 commit comments