mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-25 08:46:22 +02:00
- Introduced HITL edit panel atom for managing state. - Implemented HITL edit panel component for both desktop and mobile views. - Updated right panel to include HITL edit tab and handle its visibility. - Enhanced NewChatPage to incorporate the HITL edit panel for improved user interaction.
8 lines
298 B
TypeScript
8 lines
298 B
TypeScript
import { atom } from "jotai";
|
|
|
|
export type RightPanelTab = "sources" | "report" | "editor" | "hitl-edit";
|
|
|
|
export const rightPanelTabAtom = atom<RightPanelTab>("sources");
|
|
|
|
/** Whether the right panel is collapsed (hidden but state preserved) */
|
|
export const rightPanelCollapsedAtom = atom(false);
|