From 41f71056ad0486735d945e350c70ddd80cec764d Mon Sep 17 00:00:00 2001 From: yaschalew Date: Sat, 11 Jul 2026 11:34:41 +0300 Subject: [PATCH] fix --- .../backoffice/src/shared/services/organizationsService.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/edr-freight-web/backoffice/src/shared/services/organizationsService.ts b/apps/edr-freight-web/backoffice/src/shared/services/organizationsService.ts index 84a88b71c..3a560a08d 100644 --- a/apps/edr-freight-web/backoffice/src/shared/services/organizationsService.ts +++ b/apps/edr-freight-web/backoffice/src/shared/services/organizationsService.ts @@ -46,7 +46,8 @@ export const getOrganizations = async ( }; export const getMyAdminOrganizations = async (): Promise => { - return axiosInstance.get("/organizations/my-admin-organizations", { + //my-admin-organizations + return axiosInstance.get("/organizations/with-admin-flag", { headers: withHeaders(), }); };