Fix duplicate text on invitation page header

- Removed redundant "Invite to {group name}" text
- Now shows only group avatar, private chip, and personalized invite heading
- Eliminates duplication like "Invite to Anyville Community Garden" + "Invite Sarah Johnson to Anyville Community Garden"

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
main
Claude Code Assistant 2 months ago
parent 06c41e8397
commit ad33390bb6
  1. 3
      src/pages/InvitationPage.tsx

@ -242,9 +242,6 @@ const InvitationPage = () => {
<Groups /> <Groups />
</Avatar> </Avatar>
<Box> <Box>
<Typography variant="h4" component="h1" gutterBottom>
Invite to {group.name}
</Typography>
{group.isPrivate && ( {group.isPrivate && (
<Chip label="Private Group" size="small" variant="outlined" /> <Chip label="Private Group" size="small" variant="outlined" />
)} )}

Loading…
Cancel
Save