Skip to content

Commit

Permalink
fix build error
Browse files Browse the repository at this point in the history
  • Loading branch information
malerba118 committed Nov 18, 2021
1 parent d5da01a commit efaec29
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions components/OutputEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ export default function OutputEditor(props: PropTypes) {
return (
<Editor
height={height}
defaultLanguage='typescript'
defaultLanguage="typescript"
value={output.join("\n")}
className='block w-1/2 text-white rounded-lg shadow-sm opacity-75 sm:text-sm'
theme='vs-dark'
className="block w-1/2 text-white rounded-lg shadow-sm opacity-75 sm:text-sm"
theme="vs-dark"
options={{
fontSize: 12,
padding: { top: 15, bottom: 4, left: 4, right: 4 },
padding: { top: 15, bottom: 4 },
minimap: { enabled: false },
readOnly: true,
lineNumbers: "off",
Expand Down

0 comments on commit efaec29

Please sign in to comment.