From 79e2e289797533d138b6fda330f0674d82a83623 Mon Sep 17 00:00:00 2001 From: LyAhn Date: Sun, 5 Jul 2026 13:38:52 +0100 Subject: [PATCH] refactor(dev): move DemoPanel into src/dev DemoPanel is dev-only tooling like the rest of the UI Lab mock code, so it lives with it now instead of among the real UI components. Import path in App.tsx updated; the DEV gating (and production tree-shaking) is unchanged. --- src/App.tsx | 2 +- src/{components => dev}/DemoPanel.tsx | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/{components => dev}/DemoPanel.tsx (100%) diff --git a/src/App.tsx b/src/App.tsx index 2aa17c3..3a995eb 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -15,7 +15,7 @@ import { UpdateToast } from './components/UpdateToast' import { WhatsNewToast } from './components/WhatsNewToast' import { WhatsNewModal } from './components/WhatsNewModal' import { OnboardingOverlay } from './components/onboarding/OnboardingOverlay' -import { DemoPanel } from './components/DemoPanel' +import { DemoPanel } from './dev/DemoPanel' import { initializeNotifications } from './notifications' export default function App() { diff --git a/src/components/DemoPanel.tsx b/src/dev/DemoPanel.tsx similarity index 100% rename from src/components/DemoPanel.tsx rename to src/dev/DemoPanel.tsx