From 038a15abab3335b57db62ff1194cbd632ba5a2df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodrigo=20L=C3=B3pez=20Dato?= Date: Tue, 22 Oct 2024 10:15:38 -0300 Subject: [PATCH] fix: Fix "assigned groups" showing empty when trying to assign groups to a role (#4756) --- frontend/common/services/useMyGroup.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/common/services/useMyGroup.ts b/frontend/common/services/useMyGroup.ts index 5177909d8cd8..2164484b0d3f 100644 --- a/frontend/common/services/useMyGroup.ts +++ b/frontend/common/services/useMyGroup.ts @@ -9,7 +9,7 @@ export const myGroupService = service getMyGroups: builder.query({ providesTags: [{ id: 'LIST', type: 'MyGroup' }], query: (q) => ({ - url: `/organisations/${q.orgId}/groups/my-groups`, + url: `/organisations/${q.orgId}/groups/my-groups/`, }), }), // END OF ENDPOINTS