From d831c1cb8863ed4dd4f2f3980dde1aa4f1e71543 Mon Sep 17 00:00:00 2001 From: Vikrant Gupta Date: Fri, 21 Mar 2025 11:32:49 +0530 Subject: [PATCH] fix(portal): url limit reached for stripe customer portal (#7392) --- frontend/src/container/AppLayout/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/container/AppLayout/index.tsx b/frontend/src/container/AppLayout/index.tsx index 23b8af397d..cb91ba38fd 100644 --- a/frontend/src/container/AppLayout/index.tsx +++ b/frontend/src/container/AppLayout/index.tsx @@ -325,7 +325,7 @@ function AppLayout(props: AppLayoutProps): JSX.Element { const handleFailedPayment = useCallback((): void => { manageCreditCard({ - url: window.location.href, + url: window.location.origin, }); }, [manageCreditCard]);