Skip to content

Commit

Permalink
fix(ai-chat): ai screen on default part of feature flag
Browse files Browse the repository at this point in the history
  • Loading branch information
Shoaibdev7 committed Oct 18, 2024
1 parent f52726d commit cf9d15d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/App/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ export const App = () => {
<Wrapper direction="row">
<FormProvider {...form}>
<LazyMainToolbar />
{!universeQuestionIsOpen && <LazySideBar />}
{!universeQuestionIsOpen && chatInterfaceFeatureFlag && <LazySideBar />}
<LazyUniverse />
<Overlay />
<AppBar />
Expand Down
9 changes: 8 additions & 1 deletion src/stores/useAppStore/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { create } from 'zustand'
import { TAboutParams } from '~/network/fetchSourcesData'
import { useFeatureFlagStore } from '../useFeatureFlagStore'

export type SecondarySidebarActiveTab = '' | 'sentiment' | 'sources' | 'about'

Expand Down Expand Up @@ -71,7 +72,13 @@ export const useAppStore = create<AppStore>((set, get) => ({
transcriptIsOpen: !sidebarIsOpen ? false : get().transcriptIsOpen,
}),
setTranscriptOpen: (transcriptIsOpen) => set({ transcriptIsOpen }),
setUniverseQuestionIsOpen: () => set({ universeQuestionIsOpen: !get().universeQuestionIsOpen }),
setUniverseQuestionIsOpen: () => {
const { chatInterfaceFeatureFlag } = useFeatureFlagStore.getState()

if (chatInterfaceFeatureFlag) {
set({ universeQuestionIsOpen: !get().universeQuestionIsOpen })
}
},
setAppMetaData: (appMetaData) => set({ appMetaData }),
setShowCollapseButton: (showCollapseButton) => set({ showCollapseButton }),
setSelectedColor: (selectedColor) => set({ selectedColor }),
Expand Down

0 comments on commit cf9d15d

Please sign in to comment.