data persist

This commit is contained in:
wass08
2026-01-23 09:56:06 +09:00
parent 2cee38e295
commit cc9d9916b7
4 changed files with 176 additions and 171 deletions
@@ -27,6 +27,7 @@ import {
import { cn } from "@/lib/utils";
import useEditor from "@/store/use-editor";
import { useViewer } from "@pascal-app/viewer";
import { SettingsPanel } from "./panels/settings-panel";
import { SitePanel } from "./panels/site-panel";
import { ZonePanel } from "./panels/zone-panel";
@@ -83,13 +84,8 @@ export function AppSidebar() {
return <ZonePanel />;
// case "collections":
// return <CollectionsPanel />;
// case "settings":
// return (
// <SettingsPanel
// onOpenHelp={() => setIsHelpOpen(true)}
// onOpenJsonInspector={() => setIsJsonInspectorOpen(true)}
// />
// );
case "settings":
return <SettingsPanel />;
default:
return null;
}