fix: APIPathGen 호출 시 중간 경로 캐싱시 버그 수정

This commit is contained in:
2022-03-25 23:50:41 +09:00
parent 24c043386d
commit f50ba83d31
+1 -2
View File
@@ -12,8 +12,7 @@ export function APIPathGen(obj, callback, path) {
nextPath = [key];
}
else {
nextPath = path;
nextPath.push(key);
nextPath = [...path, key];
}
if (!(key in target)) {