diff --git a/apps/web/services/usergroups/usergroups.ts b/apps/web/services/usergroups/usergroups.ts index 9bd42ce0..c4eaa599 100644 --- a/apps/web/services/usergroups/usergroups.ts +++ b/apps/web/services/usergroups/usergroups.ts @@ -12,7 +12,7 @@ export async function getUserGroups(org_id: any) { export async function createUserGroup(body: any) { const result: any = await fetch( - `${getAPIUrl()}usergroups`, + `${getAPIUrl()}usergroups/`, RequestBody('POST', body, null) ) const res = await getResponseMetadata(result)