Skip to content

Commit

Permalink
fix more lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyphilemon committed Dec 18, 2024
1 parent 2d2bc46 commit 8740eea
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions components/code-editor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ function PureCodeEditor({ content, saveContent, status }: EditorProps) {
editorRef.current = null;
}
};
// NOTE: we only want to run this effect once
// eslint-disable-next-line
}, []);

useEffect(() => {
Expand Down
3 changes: 2 additions & 1 deletion components/console.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ export function Console({ consoleOutputs, setConsoleOutputs }: ConsoleProps) {
className="h-2 w-full fixed cursor-ns-resize z-50"
onMouseDown={startResizing}
style={{ bottom: height - 4 }}
role="separator"
role="slider"
aria-valuenow={minHeight}
/>

<div
Expand Down

0 comments on commit 8740eea

Please sign in to comment.