Skip to content

Commit 897c033

Browse files
committed
fix lint
1 parent c9a3867 commit 897c033

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

apps/sim/blocks/blocks/tinybird.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,8 @@ export const TinybirdBlock: BlockConfig<TinybirdResponse> = {
134134
// Convert wait from string to boolean
135135
// Convert wait from string to boolean
136136
if (params.wait !== undefined) {
137-
const waitValue = typeof params.wait === 'string' ? params.wait.toLowerCase() : params.wait
137+
const waitValue =
138+
typeof params.wait === 'string' ? params.wait.toLowerCase() : params.wait
138139
result.wait = waitValue === 'true' || waitValue === true
139140
}
140141
} else if (operation === 'tinybird_query') {

0 commit comments

Comments
 (0)