diff --git a/src/groups/GroupPage.tsx b/src/groups/GroupPage.tsx
index d51e61e9..3458c950 100644
--- a/src/groups/GroupPage.tsx
+++ b/src/groups/GroupPage.tsx
@@ -29,7 +29,7 @@ export const GroupPage = () => {
const getSidebarModules = () => {
const result = [] as JSX.Element[];
if (addSessionVisible) result.push();
- if (addPersonVisible) result.push();
+ if (addPersonVisible) result.push();
if (addMemberVisible) result.push();
return result;
}