elipsis fix

This commit is contained in:
Madison 2025-07-23 19:58:47 -05:00
parent 9986a8cfc7
commit 930b4dd563

View File

@ -61,7 +61,7 @@ function joinUrlPath(...segments: string[]): string {
return segments
.filter(segment => segment && segment.length > 0)
.join('/')
.replace(/\\/+/g, '/'); // Remove duplicate slashes
.replace(/\/+/g, '/'); // Remove duplicate slashes
}
/**