diff --git a/src/components/Panels/RightPanel.tsx b/src/components/Panels/RightPanel.tsx
index a83cfb0..a521763 100644
--- a/src/components/Panels/RightPanel.tsx
+++ b/src/components/Panels/RightPanel.tsx
@@ -38,27 +38,17 @@ interface Props {
*/
interface PanelHeaderProps {
title: string;
- onClose?: () => void;
onCollapse: () => void;
}
-const PanelHeader = ({ title, onClose, onCollapse }: PanelHeaderProps) => (
+const PanelHeader = ({ title, onCollapse }: PanelHeaderProps) => (
{title}
-
- {onClose && (
-
-
- ✕
-
-
- )}
-
-
-
-
-
-
+
+
+
+
+
);
@@ -262,7 +252,7 @@ const RightPanel = ({ selectedNode, selectedEdge, onClose }: Props) => {
className="h-full bg-white border-l border-gray-200 flex flex-col"
style={{ width: `${rightPanelWidth}px` }}
>
-
+
{/* Scrollable content */}
@@ -431,7 +421,7 @@ const RightPanel = ({ selectedNode, selectedEdge, onClose }: Props) => {
className="h-full bg-white border-l border-gray-200 flex flex-col"
style={{ width: `${rightPanelWidth}px` }}
>
-
+
{/* Scrollable content */}
diff --git a/src/components/Timeline/BottomPanel.tsx b/src/components/Timeline/BottomPanel.tsx
index ed843f6..af5959a 100644
--- a/src/components/Timeline/BottomPanel.tsx
+++ b/src/components/Timeline/BottomPanel.tsx
@@ -95,7 +95,7 @@ const BottomPanel: React.FC = () => {
Timeline
{/* Current State Indicator */}
- {currentState && !bottomPanelCollapsed && (
+ {currentState && (
<>
diff --git a/src/stores/panelStore.ts b/src/stores/panelStore.ts
index 6e59479..a7c3e72 100644
--- a/src/stores/panelStore.ts
+++ b/src/stores/panelStore.ts
@@ -60,7 +60,7 @@ const MAX_RIGHT_WIDTH = 500;
const MIN_BOTTOM_HEIGHT = 150;
const MAX_BOTTOM_HEIGHT = 500;
const COLLAPSED_LEFT_WIDTH = 40;
-const COLLAPSED_BOTTOM_HEIGHT = 40;
+const COLLAPSED_BOTTOM_HEIGHT = 48;
export const usePanelStore = create
()(
persist(