JeCabrera commited on
Commit
45727b2
·
verified ·
1 Parent(s): 8a5c075

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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
- # Replace the wrapper with direct markdown display
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)