Skip to content
Snippets Groups Projects
Unverified Commit 1be6c57a authored by Sean Hatfield's avatar Sean Hatfield Committed by GitHub
Browse files

[FIX] Workspace UI bug fix (#1043)

fix workspaces list ui
parent 287a1d22
No related branches found
No related tags found
No related merge requests found
...@@ -72,7 +72,7 @@ export default function ActiveWorkspaces() { ...@@ -72,7 +72,7 @@ export default function ActiveWorkspaces() {
} }
return ( return (
<div role="list" aria-label="Workspaces"> <div role="list" aria-label="Workspaces" className="flex flex-col gap-y-2">
{workspaces.map((workspace) => { {workspaces.map((workspace) => {
const isActive = workspace.slug === slug; const isActive = workspace.slug === slug;
const isHovered = hoverStates[workspace.id]; const isHovered = hoverStates[workspace.id];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment