Skip to content

Commit

Permalink
Merge pull request #248 from robin-thomas/ci_prettier
Browse files Browse the repository at this point in the history
ci: fix prettier failure
  • Loading branch information
PaulRBerg authored Oct 4, 2023
2 parents 390a8e1 + 79d30f1 commit 4632439
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/helpers/constants.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export const codeloadBaseUrl: string = "https://codeload.github.com";

export const Frameworks = ["react", "vue"] as const;
export type FrameworkKey = typeof Frameworks[number];
export type FrameworkKey = (typeof Frameworks)[number];

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

Expand Down Expand Up @@ -89,4 +89,4 @@ export const Templates = [
"synthetix",
"uniswap-v2",
] as const;
export type TemplateKey = typeof Templates[number];
export type TemplateKey = (typeof Templates)[number];

0 comments on commit 4632439

Please sign in to comment.