We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd0d1a6 commit bb5fe97Copy full SHA for bb5fe97
1 file changed
packages/router-core/src/utils.ts
@@ -231,7 +231,7 @@ export function replaceEqualDeep<T>(prev: any, _next: T): T {
231
const key = array ? i : (nextItems[i] as any)
232
const p = prev[key]
233
if (
234
- (array || Object.prototype.hasOwnProperty.call(prev, key)) &&
+ (array || prev.hasOwnProperty(key)) &&
235
p === undefined &&
236
next[key] === undefined
237
) {
0 commit comments