Skip to content

Commit d442ab7

Browse files
committed
cleanup
1 parent bad68f9 commit d442ab7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

apps/sim/stores/modals/search/store.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const initialData: SearchData = {
2323

2424
export const useSearchModalStore = create<SearchModalState>()(
2525
devtools(
26-
(set, get) => ({
26+
(set, _) => ({
2727
isOpen: false,
2828
data: initialData,
2929

@@ -124,7 +124,6 @@ export const useSearchModalStore = create<SearchModalState>()(
124124
const toolOperations: SearchToolOperationItem[] = getToolOperationsIndex()
125125
.filter((op) => allowedBlockTypes.has(op.blockType))
126126
.map((op) => {
127-
// Include aliases in searchValue so synonym search works (e.g., "post" finds "Send Message")
128127
const aliasesStr = op.aliases?.length ? ` ${op.aliases.join(' ')}` : ''
129128
return {
130129
id: op.id,

0 commit comments

Comments
 (0)