diff --git a/DOCUMENTATION.docx b/DOCUMENTATION.docx
index 696ae9795f8a56845bfaa146287e1503b5493867..a55471178aca4048ff6f9d9de7aebc10d1611440 100644
Binary files a/DOCUMENTATION.docx and b/DOCUMENTATION.docx differ
diff --git a/README.md b/README.md
index 627c29f17fece22c674f059d3cf6cf1531cb4446..bbb8c184e692fd659f22627da9f2106d9777e236 100644
--- a/README.md
+++ b/README.md
@@ -115,3 +115,4 @@ Setup scripts are provided for Mac, Linux and Windows. You can run the appropria
  - start.sh
  - start.ps1
  - start.bat
+ 
\ No newline at end of file
diff --git a/backend/data.json b/backend/data.json
index a5a678d430b58e45d12f99d2fe82a466b707748d..7c309d72024f5e63926fdcb7b621cf75987c768d 100644
--- a/backend/data.json
+++ b/backend/data.json
@@ -1 +1 @@
-{"medicines": [{"name": "Elixirium", "price": 5.99}, {"name": "Cureallium", "price": 7.49}, {"name": "Healix", "price": 4.99}, {"name": "Restorix", "price": 12.99}, {"name": "", "price": 15.49}, {"name": "Tonicast", "price": null}, {"name": "Allevium", "price": 19.99}, {"name": "Synthomaxi", "price": 14.99}, {"name": "Magicure", "price": 200.0}, {"name": "Paracetamol", "price": 2.0}, {"name": "Ibuprofen", "price": 3.99}, {"name": "Asprin", "price": 4.99}]}
\ No newline at end of file
+{"medicines": [{"name": "Elixirium", "price": 5.99}, {"name": "Cureallium", "price": 7.49}, {"name": "Healix", "price": 4.99}, {"name": "Restorix", "price": 12.99}, {"name": "", "price": 15.49}, {"name": "Tonicast", "price": null}, {"name": "Allevium", "price": 19.99}, {"name": "Synthomaxi", "price": 14.99}, {"name": "Magicure", "price": 200.0}, {"name": "Paracetamol", "price": 7.99}]}
\ No newline at end of file
diff --git a/frontend/script.js b/frontend/script.js
index 79ab2a21479ae3a3240c05f0d11ed269132ad60d..74b68820b3e8be6013af9d0c6adb8eab0961fb01 100644
--- a/frontend/script.js
+++ b/frontend/script.js
@@ -17,10 +17,12 @@ async function fetchData() {
         data.forEach((medicine) => {
             const row = document.createElement("tr");
             const name = document.createElement("td");
-            name.textContent = medicine.name || "N/A";
+            /*name.textContent = medicine.name || "N/A";*/
+            name.textContent = medicine.name;
             row.appendChild(name);
             const price = document.createElement("td");
-            price.textContent = medicine.price !== null ? `$${medicine.price.toFixed(2)}` : "N/A";
+            /*price.textContent = medicine.price !== null ? `$${medicine.price.toFixed(2)}` : "N/A";*/
+            price.textContent = medicine.price;
             row.appendChild(price)
             tblBody.appendChild(row);
 
diff --git a/~$CUMENTATION.docx b/~$CUMENTATION.docx
index 71e0a4a5c88b9740472e6d94019c79b2a49b9469..b6f67f720c0eeb1b7aacfd408e1bada9cc1985c3 100644
Binary files a/~$CUMENTATION.docx and b/~$CUMENTATION.docx differ