From 53a012d9bb1d5431b6c23a1a975715776ad52c65 Mon Sep 17 00:00:00 2001 From: Chewbacca Date: Mon, 5 Jun 2023 11:11:57 -0400 Subject: [PATCH] Fix navigation bug on Group profiles --- app/soapbox/pages/group-page.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/soapbox/pages/group-page.tsx b/app/soapbox/pages/group-page.tsx index e88441432..1803de51c 100644 --- a/app/soapbox/pages/group-page.tsx +++ b/app/soapbox/pages/group-page.tsx @@ -139,7 +139,7 @@ const GroupPage: React.FC = ({ params, children }) => { ); return items; - }, [features.groupsTags, pending.length]); + }, [features.groupsTags, pending.length, group?.slug]); const renderChildren = () => { if (isDeleted) { @@ -160,6 +160,7 @@ const GroupPage: React.FC = ({ params, children }) => {