Skip to content

Commit

Permalink
fix: Fix "assigned groups" showing empty when trying to assign groups…
Browse files Browse the repository at this point in the history
… to a role (#4756)
  • Loading branch information
rolodato authored Oct 22, 2024
1 parent df1b84e commit 038a15a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/common/services/useMyGroup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const myGroupService = service
getMyGroups: builder.query<Res['myGroups'], Req['getMyGroups']>({
providesTags: [{ id: 'LIST', type: 'MyGroup' }],
query: (q) => ({
url: `/organisations/${q.orgId}/groups/my-groups`,
url: `/organisations/${q.orgId}/groups/my-groups/`,
}),
}),
// END OF ENDPOINTS
Expand Down

0 comments on commit 038a15a

Please sign in to comment.