We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bad68f9 commit d442ab7Copy full SHA for d442ab7
apps/sim/stores/modals/search/store.ts
@@ -23,7 +23,7 @@ const initialData: SearchData = {
23
24
export const useSearchModalStore = create<SearchModalState>()(
25
devtools(
26
- (set, get) => ({
+ (set, _) => ({
27
isOpen: false,
28
data: initialData,
29
@@ -124,7 +124,6 @@ export const useSearchModalStore = create<SearchModalState>()(
124
const toolOperations: SearchToolOperationItem[] = getToolOperationsIndex()
125
.filter((op) => allowedBlockTypes.has(op.blockType))
126
.map((op) => {
127
- // Include aliases in searchValue so synonym search works (e.g., "post" finds "Send Message")
128
const aliasesStr = op.aliases?.length ? ` ${op.aliases.join(' ')}` : ''
129
return {
130
id: op.id,
0 commit comments