Skip to content

Commit 27a20ce

Browse files
committed
fix(@sirutils/seql): fix curly brackets in or operation
1 parent 910bed8 commit 27a20ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/seql/src/utils/operations.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ export const or = <T>(
121121

122122
const andChain = join(andChainBuilders, ' OR ')
123123
const result =
124-
buildAll`${raw(adapterApi, adapterApi.andGrouping ? '(' : '')}}${andChain}${raw(adapterApi, adapterApi.andGrouping ? ')' : '')}}`(
124+
buildAll`${raw(adapterApi, adapterApi.andGrouping ? '(' : '')}${andChain}${raw(adapterApi, adapterApi.andGrouping ? ')' : '')}`(
125125
adapterApi
126126
)
127127

0 commit comments

Comments
 (0)