Skip to content

Commit

Permalink
fix: add trailing slash to update group logic (#3943)
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewelwell authored May 14, 2024
1 parent fc0cceb commit 95b14d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/common/services/useGroup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export const groupService = service
const { data, error } = await baseQuery({
body: query.data,
method: 'PUT',
url: `organisations/${query.orgId}/groups/${query.data.id}`,
url: `organisations/${query.orgId}/groups/${query.data.id}/`,
})
if (error) {
return { error }
Expand Down

0 comments on commit 95b14d1

Please sign in to comment.