Disable alerts on logout
This commit is contained in:
+1
-1
@@ -20,7 +20,7 @@ export const ucFirst = (s: string) => s.slice(0, 1).toUpperCase() + s.slice(1)
|
||||
export const buildUrl = (base: string | URL, ...pathname: string[]) => {
|
||||
const url = new URL(base)
|
||||
|
||||
url.pathname = '/' + pathname.join('/')
|
||||
url.pathname = "/" + pathname.join("/")
|
||||
|
||||
return url.toString()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user