[FIX] Workspace UI bug fix (#1043)

fix workspaces list ui
This commit is contained in:
Sean Hatfield 2024-04-05 10:17:20 -07:00 committed by GitHub
parent 287a1d2213
commit 1be6c57a44
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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];