Skip to content

Commit

Permalink
Prettier Format & ESLint
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Sep 21, 2024
1 parent 7224d6a commit 31ca1d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/getScripts.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ async function fetchAndParseCategory(category: string): Promise<ParsedScripts> {
},
);
if (!response.ok || response.status != 200) {
throw Error("failed to fetch scripts from github pages")
throw Error('failed to fetch scripts from github pages');
}
const compressed: string = await response.text();
const decompressed: string = new Compressor().decompress(compressed);
Expand Down

0 comments on commit 31ca1d7

Please sign in to comment.