Skip to content

Commit 2168033

Browse files
fmt (#2808)
1 parent dd0ba68 commit 2168033

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

apps/desktop/src/hooks/useKeywords.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,9 +101,7 @@ const extractKeyphraseMatches = (phrase: Keyphrase): string[] =>
101101
});
102102

103103
const combineKeywords = (markdownWords: string[]): string[] =>
104-
Array.from(new Set(markdownWords)).filter(
105-
(keyword) => keyword.length >= 2,
106-
);
104+
Array.from(new Set(markdownWords)).filter((keyword) => keyword.length >= 2);
107105

108106
const removeCodeBlocks = (text: string): string =>
109107
text.replace(/```[\s\S]*?```/g, "").replace(/`[^`]+`/g, "");

apps/desktop/src/store/tinybase/persister/chat-shortcuts/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,3 @@ export function useChatShortcutPersister(store: Store) {
1818
[],
1919
);
2020
}
21-

0 commit comments

Comments
 (0)