Wajahat698 commited on
Commit
cac4dd9
·
verified ·
1 Parent(s): 87d5761

Update app.py

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