Wajahat698 commited on
Commit
aaf6915
·
verified ·
1 Parent(s): fda97b6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -957,10 +957,12 @@ def side():
957
  # Display the first matching trustbuilder
958
  if matching_trustbuilders:
959
  st.write("### Result:")
960
- st.write(f"- {matching_trustbuilders}")
 
961
  else:
962
  st.write("No TrustBuilders found matching the criteria.")
963
 
 
964
 
965
  # UI for saving TrustBuilders
966
  st.subheader("Save TrustBuilders®")
 
957
  # Display the first matching trustbuilder
958
  if matching_trustbuilders:
959
  st.write("### Result:")
960
+ # Join the matching trustbuilders into a bullet list
961
+ st.markdown("\n".join([f"- {tb}" for tb in matching_trustbuilders]))
962
  else:
963
  st.write("No TrustBuilders found matching the criteria.")
964
 
965
+
966
 
967
  # UI for saving TrustBuilders
968
  st.subheader("Save TrustBuilders®")