Try to fix workers and workspace
Build and Push Spoon Images / quality (push) Successful in 1m40s
Build and Push Spoon Images / build-images (push) Successful in 7m0s

This commit is contained in:
Gabriel Brown
2026-06-22 23:17:27 -04:00
parent f33f76d874
commit 930fbf5965
11 changed files with 208 additions and 48 deletions
@@ -79,7 +79,7 @@ export const CodeEditor = ({
};
return (
<div className='flex h-full min-h-[520px] flex-col'>
<div className='flex h-full min-h-0 flex-col'>
<div className='border-border flex h-11 items-center justify-between gap-3 border-b px-3'>
<div className='min-w-0'>
<p className='truncate font-mono text-xs'>{path}</p>
@@ -104,7 +104,8 @@ export const CodeEditor = ({
</div>
<div className='min-h-0 flex-1'>
<MonacoEditor
height='520px'
height='100%'
width='100%'
path={path}
value={value}
theme='vs-dark'
@@ -114,6 +115,7 @@ export const CodeEditor = ({
fontSize: 13,
scrollBeyondLastLine: false,
wordWrap: 'on',
automaticLayout: true,
}}
onMount={(editor) => {
editorRef.current = editor as MonacoEditorInstance;