diff --git a/app/root.tsx b/app/root.tsx index 36aaec5..6cfae58 100644 --- a/app/root.tsx +++ b/app/root.tsx @@ -78,7 +78,7 @@ export default function Root() { fetch('/api/meta') .then(response => response.json()) .then(data => { - setPortalUrl(data.domain); + setPortalUrl(`https://${data.portalUrl}`); }) .catch((error: any) => { console.error('Failed to fetch portal url:', error);