Skip to content

Commit 69d25de

Browse files
committed
make fmt
1 parent 2a1f3ee commit 69d25de

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

site/src/api/api.ts

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -387,18 +387,14 @@ export const patchTemplateVersion = async (
387387
return response.data;
388388
};
389389

390-
export const archiveTemplateVersion = async (
391-
templateVersionId: string,
392-
) => {
390+
export const archiveTemplateVersion = async (templateVersionId: string) => {
393391
const response = await axios.post<TypesGen.TemplateVersion>(
394392
`/api/v2/templateversions/${templateVersionId}/archive`,
395393
);
396394
return response.data;
397395
};
398396

399-
export const unarchiveTemplateVersion = async (
400-
templateVersionId: string,
401-
) => {
397+
export const unarchiveTemplateVersion = async (templateVersionId: string) => {
402398
const response = await axios.post<TypesGen.TemplateVersion>(
403399
`/api/v2/templateversions/${templateVersionId}/unarchive`,
404400
);

0 commit comments

Comments
 (0)