diff --git a/src/utils/index.ts b/src/utils/index.ts index 70001f3ed..f94c441f4 100644 --- a/src/utils/index.ts +++ b/src/utils/index.ts @@ -30,7 +30,7 @@ export function get(object: any, path: string): any { let result = object; keys.forEach((key) => { - result = result[key] ?? ''; + result = isObject(result) ? result[key] ?? '' : ''; }); return result;