Skip to content

Commit

Permalink
fix: code editor theme
Browse files Browse the repository at this point in the history
  • Loading branch information
gorgeousvlad committed Dec 1, 2023
1 parent 9179e12 commit 8c9e0a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/editor/components/CodeEditor/CodeEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export const CodeEditor = ({
language="yaml"
options={options}
onChange={onChangeWithValidation}
theme={theme === Theme.Light ? 'vs' : 'vs-dark'}
theme={theme === Theme.Dark ? 'vs-dark' : 'vs'}
/>
</div>
<div className={b('footer')}>
Expand Down

0 comments on commit 8c9e0a0

Please sign in to comment.