Skip to content

Commit 2c267f5

Browse files
committed
fix(matcher): correct check when removing existing records on add
1 parent dfc1fb3 commit 2c267f5

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/matcher/index.ts

+5-3
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,11 @@ export function createRouterMatcher(
118118
// otherwise, the first record is the original and others are aliases
119119
originalMatcher = originalMatcher || matcher
120120
if (originalMatcher !== matcher) originalMatcher.alias.push(matcher)
121+
122+
// remove the route if named and only for the top record (avoid in nested calls)
123+
// this works because the original record is the first one
124+
if (isRootAdd && record.name && !isAliasRecord(matcher))
125+
removeRoute(record.name)
121126
}
122127

123128
// only non redirect records have children
@@ -136,9 +141,6 @@ export function createRouterMatcher(
136141
// other alias (if any) need to reference this record when adding children
137142
originalRecord = originalRecord || matcher
138143

139-
// remove the route if named and only for the top record (avoid in nested calls)
140-
if (isRootAdd && record.name) removeRoute(record.name)
141-
142144
insertMatcher(matcher)
143145
}
144146

0 commit comments

Comments
 (0)