We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a28945 commit bcf03bdCopy full SHA for bcf03bd
src/browser/components/AIView.tsx
@@ -106,7 +106,8 @@ const AIViewInner: React.FC<AIViewProps> = ({
106
107
// Resizable RightSidebar width - separate hooks per tab for independent persistence
108
const costsSidebar = useResizableSidebar({
109
- enabled: selectedRightTab === "costs",
+ // Costs + Stats share the same resizable width persistence
110
+ enabled: selectedRightTab === "costs" || selectedRightTab === "stats",
111
defaultWidth: 300,
112
minWidth: 300,
113
maxWidth: 1200,
0 commit comments