Wajahat698 commited on
Commit
7668a54
·
verified ·
1 Parent(s): 00398ce

Update app.py

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