Skip to content

Commit 0b1c720

Browse files
committed
formatting
1 parent 8db1dd6 commit 0b1c720

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

site/src/api/api.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,6 @@ export const getTemplate = async (
220220
return response.data;
221221
};
222222

223-
224223
export interface TemplateOptions {
225224
readonly deprecated?: boolean;
226225
}

site/src/api/queries/templates.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ const getTemplatesQueryKey = (orgId: string, deprecated?: boolean) => [
4242
export const templates = (orgId: string, deprecated?: boolean) => {
4343
return {
4444
queryKey: getTemplatesQueryKey(orgId, deprecated),
45-
queryFn: () => API.getTemplates(orgId, {deprecated}),
45+
queryFn: () => API.getTemplates(orgId, { deprecated }),
4646
};
4747
};
4848

0 commit comments

Comments
 (0)