small fixes

This commit is contained in:
2024-08-14 15:09:01 +02:00
parent f8f0b27d52
commit e3e4bfc8bd
2 changed files with 4 additions and 2 deletions

View File

@@ -100,7 +100,8 @@
} ); } );
const logout = () => { const logout = () => {
location.href = localStorage.getItem( 'url' ) + '/logout?return=' + location.href; // location.href = 'http://localhost:8080/logout?return=' + location.href;
location.href = 'https://id.janishutz.com/logout?return=' + location.href;
} }
</script> </script>

View File

@@ -42,7 +42,8 @@
sessionStorage.removeItem( 'getRedirectionReason' ); sessionStorage.removeItem( 'getRedirectionReason' );
const logout = () => { const logout = () => {
location.href = localStorage.getItem( 'url' ) + '/logout?return=' + location.href; // location.href = 'http://localhost:8080/logout?return=' + location.href;
location.href = 'https://id.janishutz.com/logout?return=' + location.href;
} }
</script> </script>