From 334c31e79da2a0845b04f29a38d0b5efb373b1cb Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Thu, 18 Dec 2025 17:00:11 +0200 Subject: [PATCH] fix(right_pane): table of contents no longer visible --- apps/client/src/widgets/sidebar/RightPanelContainer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/client/src/widgets/sidebar/RightPanelContainer.tsx b/apps/client/src/widgets/sidebar/RightPanelContainer.tsx index 83a8d957f..e10fae749 100644 --- a/apps/client/src/widgets/sidebar/RightPanelContainer.tsx +++ b/apps/client/src/widgets/sidebar/RightPanelContainer.tsx @@ -22,7 +22,7 @@ export default function RightPanelContainer() { const { note } = useActiveNoteContext(); const noteType = useNoteProperty(note, "type"); const items = [ - noteType === "text" || noteType === "doc" && , + (noteType === "text" || noteType === "doc") && , noteType === "text" && ].filter(Boolean);