Update group URLs to use slugs

This commit is contained in:
Alex Gleason
2023-04-17 15:42:08 -04:00
parent 1bce61182c
commit f2d5b2eaef
12 changed files with 27 additions and 21 deletions

View File

@ -82,7 +82,7 @@ const GroupActionButton = ({ group }: IGroupActionButton) => {
return (
<Button
theme='secondary'
to={`/groups/${group.id}/manage`}
to={`/group/${group.slug}/manage`}
>
<FormattedMessage id='group.manage' defaultMessage='Manage Group' />
</Button>