We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9a3867 commit 897c033Copy full SHA for 897c033
apps/sim/blocks/blocks/tinybird.ts
@@ -134,7 +134,8 @@ export const TinybirdBlock: BlockConfig<TinybirdResponse> = {
134
// Convert wait from string to boolean
135
136
if (params.wait !== undefined) {
137
- const waitValue = typeof params.wait === 'string' ? params.wait.toLowerCase() : params.wait
+ const waitValue =
138
+ typeof params.wait === 'string' ? params.wait.toLowerCase() : params.wait
139
result.wait = waitValue === 'true' || waitValue === true
140
}
141
} else if (operation === 'tinybird_query') {
0 commit comments