diff --git a/health/micro-ui/web/micro-ui-internals/packages/modules/campaign-manager/src/utils/getProjectServiceUrl.js b/health/micro-ui/web/micro-ui-internals/packages/modules/campaign-manager/src/utils/getProjectServiceUrl.js index 0f7a3651e25..cd12d9968d4 100644 --- a/health/micro-ui/web/micro-ui-internals/packages/modules/campaign-manager/src/utils/getProjectServiceUrl.js +++ b/health/micro-ui/web/micro-ui-internals/packages/modules/campaign-manager/src/utils/getProjectServiceUrl.js @@ -1,9 +1,7 @@ const getProjectServiceUrl = () => { // Access the globalConfigs object and retrieve the PROJECT_SEERVICE_PATH configuration. // If not defined, fallback to default URL `/health-project`. - const url = window.globalConfigs?.getConfig("PROJECT_SEERVICE_PATH") || `/health-project`; - - // Return the constructed URL. + let url = window.globalConfigs?.getConfig("PROJECT_SERVICE_PATH") || `health-project`; return url; };