Fix lint errors

This commit is contained in:
Gregory Schier
2025-06-10 08:16:02 -07:00
parent 383fd05c6c
commit aadfbfdfca
2 changed files with 3 additions and 2 deletions

View File

@@ -119,7 +119,7 @@ export function Workspace() {
if (activeEnvironment?.color == null) return undefined;
const background = `linear-gradient(to right, ${activeEnvironment.color} 15%, transparent 40%)`;
return { background };
}, [activeEnvironment?.color ?? 'n/a']);
}, [activeEnvironment?.color]);
// We're loading still
if (workspaces.length === 0) {