diff --git a/src-web/components/Settings/SettingsTheme.tsx b/src-web/components/Settings/SettingsTheme.tsx index 2a099c07..45d44d47 100644 --- a/src-web/components/Settings/SettingsTheme.tsx +++ b/src-web/components/Settings/SettingsTheme.tsx @@ -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'][] = [ diff --git a/src-web/components/Workspace.tsx b/src-web/components/Workspace.tsx index ef67a19a..7e1a7b72 100644 --- a/src-web/components/Workspace.tsx +++ b/src-web/components/Workspace.tsx @@ -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) {