Fix endpoint

This commit is contained in:
Chewbacca
2023-04-17 16:55:45 -04:00
parent bf2f767c8f
commit a461ef9f51

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 },
);