correct fix

This commit is contained in:
Madison 2025-07-23 20:42:53 -05:00
parent b80c9e8ce0
commit 0a5337de8c

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