This commit is contained in:
Madison 2025-07-23 20:12:29 -05:00
parent 930b4dd563
commit 6f5ee2d7d1

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
}
/**