We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 983e8c3 commit 23425d3Copy full SHA for 23425d3
site/src/pages/WorkspacePage/WorkspaceReadyPage.tsx
@@ -104,7 +104,8 @@ export const WorkspaceReadyPage = ({
104
return;
105
}
106
const isDark = window.matchMedia("(prefers-color-scheme: dark)");
107
- setFaviconTheme(isDark ? "dark" : "light");
+ // We want the favicon the opposite of the theme.
108
+ setFaviconTheme(isDark ? "light" : "dark");
109
}, []);
110
const buildLogs = useWorkspaceBuildLogs(workspace.latest_build.id);
111
const shouldDisplayBuildLogs =
0 commit comments