From 9dcd2b858fc6dabbc9e6c0c744ae068df8df5d44 Mon Sep 17 00:00:00 2001 From: Anton Tranelis Date: Wed, 30 Oct 2024 07:43:16 +0100 Subject: [PATCH] hotfix to fix permission issue --- src/Components/Profile/ProfileView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Components/Profile/ProfileView.tsx b/src/Components/Profile/ProfileView.tsx index 8ce0efba..c1ac6efd 100644 --- a/src/Components/Profile/ProfileView.tsx +++ b/src/Components/Profile/ProfileView.tsx @@ -140,7 +140,7 @@ export function ProfileView({ userType, attestationApi }: { userType: string , a setTemplate(item?.layer?.itemType.template || userType); }, [userType, item]) - const [/* urlParams, */ setUrlParams] = useState(new URLSearchParams(location.search)); + const [ urlParams, setUrlParams] = useState(new URLSearchParams(location.search)); return (