Skip to content

Commit

Permalink
chore: collapse clinical panel by default
Browse files Browse the repository at this point in the history
  • Loading branch information
crfmc committed Jan 16, 2025
1 parent 45946ee commit 473a8cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ function App(props: RouteComponentProps) {
const currentSpec = useRef<string>();

// Clinical Panel will only render in non-minimal mode and if the demo has clinical info
const [isClinicalPanelOpen, setIsClinicalPanelOpen] = useState(true);
const [isClinicalPanelOpen, setIsClinicalPanelOpen] = useState(false);
const CLINICAL_PANEL_WIDTH = isMinimalMode || !demo?.clinicalInfo ? 0 : isClinicalPanelOpen ? 250 : 45;

// interactions
Expand Down

0 comments on commit 473a8cf

Please sign in to comment.