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

@@ -11,7 +11,8 @@ import { Editor } from '../core/Editor/Editor';
import type { IconProps } from '../core/Icon';
import { Icon } from '../core/Icon';
import { IconButton } from '../core/IconButton';
import { Select, SelectProps } from '../core/Select';
import { Select } from '../core/Select';
import type { SelectProps } from '../core/Select';
import { HStack, VStack } from '../core/Stacks';
const buttonColors: ButtonProps['color'][] = [

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) {