Skip to content

Commit

Permalink
fix(ai-sidebar): set isOpen to fixed value
Browse files Browse the repository at this point in the history
  • Loading branch information
karolinaru committed Jan 9, 2025
1 parent 3207f2d commit 55536cf
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/elements/content-sidebar/BoxAISidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ export interface BoxAISidebarProps {
isDebugModeEnabled: boolean;
isIntelligentQueryMode: boolean;
isMarkdownEnabled: boolean;
isOpen: boolean;
isResetChatEnabled: boolean;
isStopResponseEnabled?: boolean;
isStreamingEnabled: boolean;
Expand All @@ -81,7 +80,6 @@ const BoxAISidebar = (props: BoxAISidebarProps) => {
fileID,
getSuggestedQuestions,
isIntelligentQueryMode,
isOpen,
isStopResponseEnabled,
recordAction,
setCacheValue,
Expand Down Expand Up @@ -119,7 +117,7 @@ const BoxAISidebar = (props: BoxAISidebarProps) => {
>
<BoxAISidebarContent
getSuggestedQuestions={getSuggestedQuestions}
isOpen={isOpen}
isOpen
isStopResponseEnabled={isStopResponseEnabled}
itemID={fileID}
itemIDs={[fileID]}
Expand Down

0 comments on commit 55536cf

Please sign in to comment.