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 19, 2024
1 parent f52726d commit caeaed8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 0 additions & 2 deletions cypress/e2e/trendingTopics/trendingTopics.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,6 @@ describe('test trending topics', () => {
// wait for boltwall queue to send tweets to jarvis
cy.wait(70000)

cy.get('[data-testid="explore-graph-btn"]').click()

cy.wait('@getTrends').then((interception) => {
const responseBody = interception.response.body

Expand Down
2 changes: 0 additions & 2 deletions cypress/support/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,5 @@ Cypress.Commands.add('initialSetup', (username, budget) => {

cy.wait(['@loadAbout', '@loadLatest', '@loadStats'])

cy.get('[data-testid="explore-graph-btn"]', { timeout: 90000 }).should('be.visible').click()

cy.wait(['@getTrends'])
})
7 changes: 6 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 '~/stores/useFeatureFlagStore'

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

Expand Down Expand Up @@ -71,7 +72,11 @@ 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()

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

0 comments on commit caeaed8

Please sign in to comment.