Skip to content

Commit f114094

Browse files
committed
Fix incorrect reference to OIDC segment type
1 parent f310925 commit f114094

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/domain/navigation/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ export function stringifyPath(path: Path<SegmentType>): string {
239239
let urlPath = "";
240240
let prevSegment: Segment<SegmentType> | undefined;
241241
for (const segment of path.segments) {
242-
if (segment.type === "oidc-callback" || segment.type === "oidc-error") {
242+
if (segment.type === "oidc") {
243243
// Do not put these segments in URL
244244
continue;
245245
}

0 commit comments

Comments
 (0)