From 4bed73d0fb6dd8ff2186ed8cd9cc4f9f5e0ef73a Mon Sep 17 00:00:00 2001 From: Stavros Date: Sun, 1 Mar 2026 13:42:52 +0200 Subject: [PATCH] refactor: pass all search params to correct domain in domain warning --- frontend/src/components/domain-warning/domain-warning.tsx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/frontend/src/components/domain-warning/domain-warning.tsx b/frontend/src/components/domain-warning/domain-warning.tsx index 42515db..d8e9eed 100644 --- a/frontend/src/components/domain-warning/domain-warning.tsx +++ b/frontend/src/components/domain-warning/domain-warning.tsx @@ -21,7 +21,6 @@ export const DomainWarning = (props: Props) => { const { search } = useLocation(); const searchParams = new URLSearchParams(search); - const redirectUri = searchParams.get("redirect_uri"); return ( @@ -46,9 +45,7 @@ export const DomainWarning = (props: Props) => {