Rammohan0504 commited on
Commit
c2d95e3
·
verified ·
1 Parent(s): e6d165e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -6
app.py CHANGED
@@ -95,15 +95,10 @@ def build_health_card(profile_image, test_results, summary):
95
  </div>
96
 
97
  <div style="font-size: 16px; margin-bottom: 20px;">
98
- <h3 style="font-size: 18px; margin-bottom: 10px;">🩸 Hematology</h3>
99
- {test_results['Hematology']}
100
- <h3 style="font-size: 18px; margin-bottom: 10px;">🧬 Iron Panel</h3>
101
  {test_results['Iron Panel']}
102
- <h3 style="font-size: 18px; margin-bottom: 10px;">🧬 Liver & Kidney</h3>
103
  {test_results['Liver & Kidney']}
104
- <h3 style="font-size: 18px; margin-bottom: 10px;">🧪 Electrolytes</h3>
105
  {test_results['Electrolytes']}
106
- <h3 style="font-size: 18px; margin-bottom: 10px;">❤️ Vitals</h3>
107
  {test_results['Vitals']}
108
  </div>
109
 
 
95
  </div>
96
 
97
  <div style="font-size: 16px; margin-bottom: 20px;">
98
+ {test_results['Hematology']} <!-- Single reference to Hematology -->
 
 
99
  {test_results['Iron Panel']}
 
100
  {test_results['Liver & Kidney']}
 
101
  {test_results['Electrolytes']}
 
102
  {test_results['Vitals']}
103
  </div>
104