🐛 (webhook) Fix webhook response data key number parsing
This commit is contained in:
@@ -42,7 +42,9 @@ export const getDeepKeys = (obj: any): string[] => {
|
||||
|
||||
const parseKey = (key: string) => {
|
||||
if (
|
||||
(key.includes(' ') || key.includes('-')) &&
|
||||
(key.includes(' ') ||
|
||||
key.includes('-') ||
|
||||
!isNaN(key as unknown as number)) &&
|
||||
!key.includes('.flatMap(item => item') &&
|
||||
!key.includes("['") &&
|
||||
!key.includes("']")
|
||||
|
||||
Reference in New Issue
Block a user