From 1e3e956dd17601cecfedbb33084fdbc75d59cb34 Mon Sep 17 00:00:00 2001 From: tonym Date: Wed, 14 Jan 2026 23:17:38 -0600 Subject: [PATCH] style: Remove dev styling for production deployment Co-Authored-By: Claude Opus 4.5 --- client/src/components/layout.tsx | 2 +- client/src/contexts/color-mode/index.tsx | 5 ----- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/client/src/components/layout.tsx b/client/src/components/layout.tsx index a0463c7..a2e6553 100644 --- a/client/src/components/layout.tsx +++ b/client/src/components/layout.tsx @@ -8,7 +8,7 @@ import { Header } from "./header"; import { Version } from "./version"; // DEV VERSION indicator -const IS_DEV = true; +const IS_DEV = false; const SpoolmanFooter: React.FC = () => { const t = useTranslate(); diff --git a/client/src/contexts/color-mode/index.tsx b/client/src/contexts/color-mode/index.tsx index 6109fe3..585955b 100644 --- a/client/src/contexts/color-mode/index.tsx +++ b/client/src/contexts/color-mode/index.tsx @@ -40,11 +40,6 @@ export const ColorModeContextProvider: React.FC = ({ children // you can change the theme colors here. example: ...RefineThemes.Magenta, theme={{ algorithm: mode === "light" ? defaultAlgorithm : darkAlgorithm, - token: { - // DEV VERSION: Teal/cyan theme to distinguish from production orange - colorPrimary: "#0891b2", - colorInfo: "#0891b2", - }, }} > {children}