diff --git a/src/app/editorialisation/services/organizations.service.ts b/src/app/editorialisation/services/organizations.service.ts
index e49ff10a6021a4e717ddc757c601a60636ef6482..d3399b6ef465f3322cc029050be2d3b8b84e7715 100644
--- a/src/app/editorialisation/services/organizations.service.ts
+++ b/src/app/editorialisation/services/organizations.service.ts
@@ -13,7 +13,7 @@ export class OrganizationsService {
   ) { }
 
   getOrganizations() {
-    return this._httpClient.get<IOrganization[]>(environment.backend.url + '/organizations').pipe(
+    return this._httpClient.get<IOrganization[]>(environment.backend.url).pipe(
       map((organizationsBack) => {
         const organizations = [];
         organizationsBack.forEach((organization) => {