Merge branch 'develop' into feature/tracking

This commit is contained in:
Linus Flood
2024-10-28 15:23:18 +01:00
102 changed files with 2272 additions and 338 deletions

View File

@@ -1,5 +1,5 @@
export function removeMultipleSlashes(str: string) {
return str.replaceAll(/\/\/+/g, "/")
export function removeMultipleSlashes(pathname: string) {
return pathname.replaceAll(/\/\/+/g, "/")
}
export function removeTrailingSlash(pathname: string) {