You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// we are redirecting to the same location we were already at
497
+
isSameRouteLocation(
498
+
stringifyQuery,
499
+
resolve(failure.to),
500
+
toLocation
501
+
)&&
502
+
// and we have done it a couple of times
503
+
redirectedFrom&&
504
+
// @ts-ignore
505
+
(redirectedFrom._count=redirectedFrom._count
506
+
? // @ts-ignore
507
+
redirectedFrom._count+1
508
+
: 1)>10
509
+
){
510
+
warn(
511
+
`Detected an infinite redirection in a navigation guard when going from "${from.fullPath}" to "${toLocation.fullPath}". Aborting to avoid a Stack Overflow. This will break in production if not fixed.`
0 commit comments