Skip to content

Commit

Permalink
Fix type issue
Browse files Browse the repository at this point in the history
  • Loading branch information
congmul committed Jul 10, 2024
1 parent 9bc0c72 commit b2f4716
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 2 additions & 0 deletions src/assets/svg/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/// <reference types="vite-plugin-svgr/client" />

import DarkModeSVG from './dark.svg?react';
import LightModeSVG from './light.svg?react';

Expand Down
3 changes: 1 addition & 2 deletions src/components/Editor/components/MonacoEditor.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import Editor from '@monaco-editor/react';
import Spinner from 'react-bootstrap/Spinner';
import { SpectralLinter, applyErrorMarkers, useLocalStorageState } from '../../../utils';
import { SpectralLinter, applyErrorMarkers } from '../../../utils';
import { Theme, EditorThemeData } from '../../../utils/theme.cont';
import { useState } from 'react';

interface MonacoEditorTypes {
editorRef: any
Expand Down

0 comments on commit b2f4716

Please sign in to comment.