We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77bc296 commit 5e9e22bCopy full SHA for 5e9e22b
1 file changed
apps/sim/app/api/tools/crowdstrike/query/route.ts
@@ -41,7 +41,7 @@ function getCloudBaseUrl(cloud: QueryRequest['cloud']): string {
41
}
42
43
function isJsonRecord(value: unknown): value is JsonRecord {
44
- return typeof value === 'object' && value !== null
+ return typeof value === 'object' && value !== null && !Array.isArray(value)
45
46
47
function getString(value: unknown): string | null {
0 commit comments