diff --git a/web-app/src/components/layout/site/AppLayout/index.tsx b/web-app/src/components/layout/site/AppLayout/index.tsx index 4df3f3c3..1a18a83e 100644 --- a/web-app/src/components/layout/site/AppLayout/index.tsx +++ b/web-app/src/components/layout/site/AppLayout/index.tsx @@ -21,7 +21,7 @@ export const AppLayout = ({ children }: AppLayoutProps) => ( sdkOptions={{ dappMetadata: { name: "Index Network", - url: window.location.href, + url: typeof window !== 'undefined' ? window.location.href : "https://index.network", }, infuraAPIKey: process.env.INFURA_API_KEY, }}