diff --git a/src/components/AIView.tsx b/src/components/AIView.tsx index e4e94dbb7..9c31b621f 100644 --- a/src/components/AIView.tsx +++ b/src/components/AIView.tsx @@ -94,15 +94,6 @@ const TerminalIconButton = styled.button` } `; -const LoadingIndicator = styled.div` - display: flex; - align-items: center; - justify-content: center; - height: 100%; - color: #888; - font-size: 14px; -`; - const OutputContainer = styled.div` flex: 1; position: relative; @@ -119,6 +110,7 @@ const OutputContent = styled.div` `; const EmptyState = styled.div` + flex: 1; display: flex; flex-direction: column; align-items: center; @@ -368,11 +360,9 @@ const AIViewInner: React.FC = ({ if (!workspaceState) { return ( - - - Loading workspace... - - + +

Loading workspace...

+
); }