diff --git a/PWA/package.json b/PWA/package.json
index aa3a946..2a77a51 100644
--- a/PWA/package.json
+++ b/PWA/package.json
@@ -1,6 +1,6 @@
{
"name": "ReliefBox",
- "version": "0.24.0",
+ "version": "0.23.0",
"description": "A tool for managing the distribution of relief items during humanitarian emergencies.",
"main": "index.js",
"scripts": {
diff --git a/PWA/public/index.html b/PWA/public/index.html
index 08e314e..e5ce021 100644
--- a/PWA/public/index.html
+++ b/PWA/public/index.html
@@ -39,7 +39,7 @@
-
0.24.0
+ 0.23.0
diff --git a/PWA/src/Services/FetchEventHandlers/DownloadDataHandler.ts b/PWA/src/Services/FetchEventHandlers/DownloadDataHandler.ts
index 6bf060c..39400bf 100644
--- a/PWA/src/Services/FetchEventHandlers/DownloadDataHandler.ts
+++ b/PWA/src/Services/FetchEventHandlers/DownloadDataHandler.ts
@@ -15,7 +15,7 @@ export class DownloadDataHandler extends ActiveSessionContainer implements Fetch
const beneficiaryStatusService = new BeneficiaryStatusService(this.activeSession)
return new Response(await SpreadSheetService.fileFromJson(await beneficiaryStatusService.generateBeneficiariyStatusses()), {
headers: {
- 'Content-Type': 'application/force-download',
+ 'Content-Type': 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
'Content-Disposition': 'attachment; filename="data_processed.xlsx"'
}
});