Skip to content

Commit

Permalink
chore: reset playground model
Browse files Browse the repository at this point in the history
  • Loading branch information
arshad-yaseen committed Feb 26, 2025
1 parent c906d50 commit 06635d6
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions playground/components/editor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,13 @@ const Editor = () => {
<MonacoEditor
height="400px"
width="800px"
language="python"
language="javascript"
className="rounded-lg border border-slate-200 dark:border-slate-800"
options={DEFAULT_MONACO_EDITOR_OPTIONS}
onMount={(editor, monaco) => {
completionRef.current = registerCompletion(monaco, editor, {
endpoint: '/api/code-completion',
language: 'python',
trigger: 'onTyping',
language: 'javascript',
});
}}
/>
Expand Down

0 comments on commit 06635d6

Please sign in to comment.