Skip to content

Commit

Permalink
Update index.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
melnikga committed Jul 19, 2024
1 parent ebfbe2b commit c3ffe33
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion components/Editor/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ const Editor = ({ readOnly = false, isCairoLangPage = false }: Props) => {
/>
</div>

<div className="relative pane grow pane-light overflow-auto md:border-r bg-gray-50 dark:bg-black-600 border-gray-200 dark:border-darkMode-primary">
<div className="relative pane grow pane-light overflow-auto md:border-r bg-gray-50 dark:bg-black-600 border-gray-200 dark:border-darkMode-secondary">
{codeType === CodeType.CASM ? (
<InstructionsTable
instructions={casmInstructions}
Expand All @@ -467,6 +467,7 @@ const Editor = ({ readOnly = false, isCairoLangPage = false }: Props) => {

onMount={handleEditorDidMount}
options={{
overviewRulerLanes: 0,
minimap: { enabled: false },
wordBreak: 'keepAll',
wordWrap: 'on',
Expand Down

0 comments on commit c3ffe33

Please sign in to comment.