Skip to content

Commit

Permalink
use double colons in the world import snippet
Browse files Browse the repository at this point in the history
  • Loading branch information
JeanJPNM committed Dec 3, 2023
1 parent 32ed760 commit 501c99f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/src/monaco/typescript.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export function addWorldModuleSnippet(monaco: Monaco) {
{
label: `Add import from "${worldModuleName}"`,
kind: monaco.languages.CompletionItemKind.Snippet,
insertText: `import { } from '${worldModuleName}';`,
insertText: `import { } from "${worldModuleName}";`,
range: new monaco.Range(
position.lineNumber,
0,
Expand Down

0 comments on commit 501c99f

Please sign in to comment.