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 dd0ba68 commit 2168033Copy full SHA for 2168033
apps/desktop/src/hooks/useKeywords.ts
@@ -101,9 +101,7 @@ const extractKeyphraseMatches = (phrase: Keyphrase): string[] =>
101
});
102
103
const combineKeywords = (markdownWords: string[]): string[] =>
104
- Array.from(new Set(markdownWords)).filter(
105
- (keyword) => keyword.length >= 2,
106
- );
+ Array.from(new Set(markdownWords)).filter((keyword) => keyword.length >= 2);
107
108
const removeCodeBlocks = (text: string): string =>
109
text.replace(/```[\s\S]*?```/g, "").replace(/`[^`]+`/g, "");
apps/desktop/src/store/tinybase/persister/chat-shortcuts/index.ts
@@ -18,4 +18,3 @@ export function useChatShortcutPersister(store: Store) {
18
[],
19
);
20
}
21
-
0 commit comments