Skip to content

Commit a794300

Browse files
ci: apply automated fixes
1 parent b4fb853 commit a794300

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/router-generator/src/generator.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1259,7 +1259,8 @@ ${acc.routeTree.map((child) => `${child.variableName}${exportName}: typeof ${get
12591259
const lastRouteSegment = split[split.length - 1] ?? trimmedPath
12601260

12611261
node.isNonPath =
1262-
lastRouteSegment.startsWith('_') || split.every(part => this.routeGroupPatternRegex.test(part))
1262+
lastRouteSegment.startsWith('_') ||
1263+
split.every((part) => this.routeGroupPatternRegex.test(part))
12631264

12641265
node.cleanedPath = removeGroups(
12651266
removeUnderscores(removeLayoutSegments(node.path)) ?? '',

0 commit comments

Comments
 (0)