Skip to content

Commit f560747

Browse files
committed
fix(core): ignore keys.indexOf in loader (need to revisit why)
1 parent 0bdd9a7 commit f560747

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

libs/core/src/lib/loader.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,7 @@ function _injectLoader<
153153
const keys = Object.keys(originalUrls);
154154
return keys.reduce(
155155
(result, key) => {
156+
// @ts-ignore
156157
(result as NgtAnyRecord)[key] = results[keys.indexOf(key)];
157158
return result;
158159
},

0 commit comments

Comments
 (0)