FIX: remove '/' from host in client-control(#1156)

This commit is contained in:
Alex Christoffer Rasmussen
2024-07-30 12:36:31 +02:00
committed by GitHub
parent e500fa6b5e
commit ce8b0d9850
3 changed files with 4 additions and 5 deletions
@@ -38,7 +38,7 @@ export function RedirectClientModal(props: RedirectClientModalProps) {
onClose();
};
const host = `${window.location.origin}/`;
const host = window.location.origin;
const canSubmit = path !== currentPath && path !== '';
return (