Skip to content

Commit

Permalink
chore: rename app
Browse files Browse the repository at this point in the history
  • Loading branch information
9sneha-n committed Oct 29, 2024
1 parent fd10dd0 commit 725cbe7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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"
},
Expand Down
4 changes: 2 additions & 2 deletions src/webapp/pages/app/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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();

Expand All @@ -47,7 +47,7 @@ function App(props: AppProps) {
isDev,
api,
orgUnits,
configurations: appConfigs,
configurations,
});
setShowShareButton(isShareButtonVisible);
setLoading(false);
Expand Down

0 comments on commit 725cbe7

Please sign in to comment.