diff --git a/src-web/components/SettingsDropdown.tsx b/src-web/components/SettingsDropdown.tsx
index e60e280a..9e78cd73 100644
--- a/src-web/components/SettingsDropdown.tsx
+++ b/src-web/components/SettingsDropdown.tsx
@@ -109,7 +109,7 @@ export function SettingsDropdown() {
},
]}
>
-
+
);
}
diff --git a/src-web/components/Workspace.tsx b/src-web/components/Workspace.tsx
index 110d72f2..a4049e80 100644
--- a/src-web/components/Workspace.tsx
+++ b/src-web/components/Workspace.tsx
@@ -177,8 +177,8 @@ function HeaderSize({ className, ...props }: HeaderSizeProps) {
diff --git a/src-web/components/WorkspaceHeader.tsx b/src-web/components/WorkspaceHeader.tsx
index a4065c1d..49a80abc 100644
--- a/src-web/components/WorkspaceHeader.tsx
+++ b/src-web/components/WorkspaceHeader.tsx
@@ -1,5 +1,5 @@
import classNames from 'classnames';
-import React, { memo } from 'react';
+import React, { memo, useState } from 'react';
import { Icon } from './core/Icon';
import { HStack } from './core/Stacks';
import { EnvironmentActionsDropdown } from './EnvironmentActionsDropdown';
@@ -17,6 +17,7 @@ interface Props {
export const WorkspaceHeader = memo(function WorkspaceHeader({ className }: Props) {
const osInfo = useOsInfo();
+ const [maximized, setMaximized] = useState(false);
return (
{osInfo?.osType !== 'Darwin' && (
-
-