From 4c0754de337c1810a25bf76f831c3b024755808a Mon Sep 17 00:00:00 2001 From: mawkone Date: Sun, 14 Jun 2026 12:44:19 -0700 Subject: [PATCH] fix(logs): fix terminal layout --- .../project/[projectId]/(home)/logs/page.tsx | 63 ++++++++++--------- vibn-frontend/components/ui/terminal.tsx | 14 ++--- 2 files changed, 39 insertions(+), 38 deletions(-) diff --git a/vibn-frontend/app/[workspace]/project/[projectId]/(home)/logs/page.tsx b/vibn-frontend/app/[workspace]/project/[projectId]/(home)/logs/page.tsx index 33dc38bf..a53b8437 100644 --- a/vibn-frontend/app/[workspace]/project/[projectId]/(home)/logs/page.tsx +++ b/vibn-frontend/app/[workspace]/project/[projectId]/(home)/logs/page.tsx @@ -153,41 +153,42 @@ export default function LogsPage() { position: "relative", }} > - -
- - {live.find((a) => a.uuid === activeUuid)?.name ?? "Logs"} - - - ) : ( - - ) - } - onClick={() => activeUuid && fetchLogs(activeUuid)} - disabled={logsLoading} - > - Refresh - -
+ {live.find((a) => a.uuid === activeUuid)?.name ?? "Logs"} + + + ) : ( + + ) + } + onClick={() => activeUuid && fetchLogs(activeUuid)} + disabled={logsLoading} + > + Refresh + + + +
-
+
-
-
-
+
+
+
-
-        {wrappedChildren}
+      
+        {wrappedChildren}
       
);