From 1be6c57a443c89dc5eb5f03268d796a4ed66549b Mon Sep 17 00:00:00 2001
From: Sean Hatfield <seanhatfield5@gmail.com>
Date: Fri, 5 Apr 2024 10:17:20 -0700
Subject: [PATCH] [FIX] Workspace UI bug fix (#1043)

fix workspaces list ui
---
 frontend/src/components/Sidebar/ActiveWorkspaces/index.jsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/frontend/src/components/Sidebar/ActiveWorkspaces/index.jsx b/frontend/src/components/Sidebar/ActiveWorkspaces/index.jsx
index e379fd0b1..0a867e889 100644
--- a/frontend/src/components/Sidebar/ActiveWorkspaces/index.jsx
+++ b/frontend/src/components/Sidebar/ActiveWorkspaces/index.jsx
@@ -72,7 +72,7 @@ export default function ActiveWorkspaces() {
   }
 
   return (
-    <div role="list" aria-label="Workspaces">
+    <div role="list" aria-label="Workspaces" className="flex flex-col gap-y-2">
       {workspaces.map((workspace) => {
         const isActive = workspace.slug === slug;
         const isHovered = hoverStates[workspace.id];