From ce9bc4db07f238d8c5b15711e1d8410ab6a26368 Mon Sep 17 00:00:00 2001 From: geoffsee <> Date: Thu, 17 Jul 2025 14:11:15 -0400 Subject: [PATCH] "Swap default states for `mapActive` and `aiActive` in LandingComponent" --- .../src/components/landing-component/LandingComponent.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/client/src/components/landing-component/LandingComponent.tsx b/packages/client/src/components/landing-component/LandingComponent.tsx index d78f6af..78acd08 100644 --- a/packages/client/src/components/landing-component/LandingComponent.tsx +++ b/packages/client/src/components/landing-component/LandingComponent.tsx @@ -8,8 +8,8 @@ import Tweakbox from './Tweakbox.tsx'; export const LandingComponent: React.FC = () => { const [intensity, setIntensity] = useState(0.99); - const [mapActive, setMapActive] = useState(false); - const [aiActive, setAiActive] = useState(true); + const [mapActive, setMapActive] = useState(true); + const [aiActive, setAiActive] = useState(false); const component = useComponent(); const { setEnabledComponent } = component;