Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -266,8 +266,8 @@ with col2:
|
|
266 |
|
267 |
# Display results if we have an offer result
|
268 |
if st.session_state.generated:
|
269 |
-
#
|
270 |
-
st.markdown(st.session_state.offer_result)
|
271 |
|
272 |
# Add a small space
|
273 |
st.markdown('<div style="height: 15px;"></div>', unsafe_allow_html=True)
|
|
|
266 |
|
267 |
# Display results if we have an offer result
|
268 |
if st.session_state.generated:
|
269 |
+
# With this line that uses the wrapper:
|
270 |
+
st.markdown(get_response_html_wrapper(st.session_state.offer_result), unsafe_allow_html=True)
|
271 |
|
272 |
# Add a small space
|
273 |
st.markdown('<div style="height: 15px;"></div>', unsafe_allow_html=True)
|