diff --git a/app/components/workbench/EditorPanel.tsx b/app/components/workbench/EditorPanel.tsx
index e789f1d6..046eaf80 100644
--- a/app/components/workbench/EditorPanel.tsx
+++ b/app/components/workbench/EditorPanel.tsx
@@ -23,6 +23,7 @@ import { isMobile } from '~/utils/mobile';
import { FileBreadcrumb } from './FileBreadcrumb';
import { FileTree } from './FileTree';
import { Terminal, type TerminalRef } from './terminal/Terminal';
+import React from 'react';
interface EditorPanelProps {
files?: FileMap;
@@ -203,7 +204,7 @@ export const EditorPanel = memo(
const isActive = activeTerminal === index;
return (
- <>
+
{index == 0 ? (
- >
+
)}
- >
+
);
})}
{terminalCount < MAX_TERMINALS && }