Skip to content
This repository was archived by the owner on Mar 25, 2025. It is now read-only.

Commit 79d30f1

Browse files
committed
ci: fix prettier failure
1 parent 390a8e1 commit 79d30f1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/helpers/constants.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export const codeloadBaseUrl: string = "https://codeload.github.com";
22

33
export const Frameworks = ["react", "vue"] as const;
4-
export type FrameworkKey = typeof Frameworks[number];
4+
export type FrameworkKey = (typeof Frameworks)[number];
55

66
export const githubApiBaseUrl: string = "https://api.github.com/repos";
77

@@ -89,4 +89,4 @@ export const Templates = [
8989
"synthetix",
9090
"uniswap-v2",
9191
] as const;
92-
export type TemplateKey = typeof Templates[number];
92+
export type TemplateKey = (typeof Templates)[number];

0 commit comments

Comments
 (0)