Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -960,7 +960,8 @@ def side():
|
|
| 960 |
# Display the first matching trustbuilder
|
| 961 |
if matching_trustbuilders:
|
| 962 |
st.write("### Result:")
|
| 963 |
-
|
|
|
|
| 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 |
|