1
0
Fork 0
mirror of synced 2024-10-02 18:16:29 +13:00

Remove console.log statements

This commit is contained in:
Rory Powell 2022-01-17 09:53:53 +00:00
parent 13d0bfb190
commit f3ac142870

View file

@ -88,7 +88,6 @@
!$isActive("./admin")
) {
const url = window.location.pathname
console.log("setting return url:" + url)
setCookie(Cookies.ReturnUrl, url)
}
@ -126,7 +125,6 @@
const returnUrl = getCookie(Cookies.ReturnUrl)
if (returnUrl) {
removeCookie(Cookies.ReturnUrl)
console.log("redirecting to return url:" + returnUrl)
window.location.href = returnUrl
}
}