Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🐛 fix: display search topics in time mode
Browse files Browse the repository at this point in the history
cy948 committed Nov 18, 2024
1 parent eb3bc94 commit c23eeef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/store/chat/slices/topic/selectors.ts
Original file line number Diff line number Diff line change
@@ -42,7 +42,7 @@ const currentActiveTopicSummary = (s: ChatStoreState): ChatTopicSummary | undefi
const isCreatingTopic = (s: ChatStoreState) => s.creatingTopic;

const groupedTopicsSelector = (s: ChatStoreState): GroupedTopic[] => {
const topics = currentTopics(s);
const topics = displayTopics(s);

if (!topics) return [];
const favTopics = currentFavTopics(s);

0 comments on commit c23eeef

Please sign in to comment.