Skip to content

Commit b8795d3

Browse files
fix: fix url
fix silly copilot hallucination
1 parent 07857e6 commit b8795d3

File tree

1 file changed

+1
-1
lines changed
  • website/src/components/astGrep

1 file changed

+1
-1
lines changed

website/src/components/astGrep/lang.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const langConfig = {
3030
}
3131

3232
const parserPaths = Object.fromEntries(Object.entries(langConfig).map(([lang, config]) => [
33-
lang, typeof config === 'function' ? config() : `https://unpkg.com/tree-sitter-${lang}@${config}/${lang}.wasm`
33+
lang, typeof config === 'function' ? config() : `https://unpkg.com/tree-sitter-${lang}@${config}/tree-sitter-${lang}.wasm`
3434
])) as Record<SupportedLang, string>
3535

3636

0 commit comments

Comments
 (0)