Merge branch 'fix-endpoint' into 'develop'

Fix endpoint

See merge request soapbox-pub/soapbox!2446
This commit is contained in:
Chewbacca 2023-04-17 20:56:14 +00:00
commit 3709b2caa6
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ function useGroupTags(groupId: string) {
const { entities, ...result } = useEntities<GroupTag>(
[Entities.GROUP_TAGS, groupId],
() => api.get(`api/v1/truth/trends/groups/${groupId}/tags`),
() => api.get(`/api/v1/truth/trends/groups/${groupId}/tags`),
{ schema: groupTagSchema },
);