Skip to content

Commit

Permalink
fix editor schema
Browse files Browse the repository at this point in the history
  • Loading branch information
tytremblay committed Dec 13, 2024
1 parent 79a25bd commit 9276eb0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/ConfigEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ export function ConfigEditor(props: ConfigEditorProps) {
validate: true,
schemas: [
{
uri: '../../config/schema.json',
uri: 'https://frc2713.github.io/QRScout/schema.json',
fileMatch: ['*'],
schema,
},
],
});
}, [monaco]);
return (
<div className="flex flex-col gap-2 h-full ">
<div className="flex flex-col gap-2 h-full pb-2 ">
<div className="flex-grow rounded-lg overflow-clip ">
<Editor
defaultLanguage="json"
Expand Down

0 comments on commit 9276eb0

Please sign in to comment.