diff --git a/package.json b/package.json index 7b105bac..32c84ab4 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "zebra-perf-test", + "name": "zebra", "description": "Zambia Emergency Bridge for Response Application", "version": "0.0.1", "license": "GPL-3.0", @@ -116,8 +116,8 @@ "script-map-outbreak-to-alerts": "npx ts-node -r dotenv/config src/scripts/mapDiseaseOutbreakToAlerts.ts" }, "manifest.webapp": { - "name": "ZEBRA-PERF_TEST", - "description": "Zambia Emergency Bridge for Response Application - PERF TEST", + "name": "ZEBRA", + "description": "Zambia Emergency Bridge for Response Application", "icons": { "48": "icon.png" }, diff --git a/src/webapp/pages/app/App.tsx b/src/webapp/pages/app/App.tsx index 001babb0..8bc29591 100644 --- a/src/webapp/pages/app/App.tsx +++ b/src/webapp/pages/app/App.tsx @@ -36,7 +36,7 @@ function App(props: AppProps) { if (!currentUser) throw new Error("User not logged in"); const orgUnits = await compositionRoot.orgUnits.getAll.execute().toPromise(); - const appConfigs = await compositionRoot.diseaseOutbreakEvent.getConfigurations + const configurations = await compositionRoot.diseaseOutbreakEvent.getConfigurations .execute() .toPromise(); @@ -47,7 +47,7 @@ function App(props: AppProps) { isDev, api, orgUnits, - configurations: appConfigs, + configurations, }); setShowShareButton(isShareButtonVisible); setLoading(false);