diff --git a/surfsense_web/atoms/layout/right-panel.atom.ts b/surfsense_web/atoms/layout/right-panel.atom.ts index d296587ed..7394093cb 100644 --- a/surfsense_web/atoms/layout/right-panel.atom.ts +++ b/surfsense_web/atoms/layout/right-panel.atom.ts @@ -1,6 +1,12 @@ import { atom } from "jotai"; -export type RightPanelTab = "sources" | "report" | "editor" | "hitl-edit" | "citation"; +export type RightPanelTab = + | "sources" + | "report" + | "editor" + | "hitl-edit" + | "citation" + | "artifacts"; export const rightPanelTabAtom = atom("sources");