Spaces:
Sleeping
Sleeping
if st.sidebar.button("Submit Feedback"): | |
if feedback_text.strip(): | |
img_path = save_temp_file(feedback_image, "img") | |
audio_path = save_temp_file(feedback_audio, "audio") | |
video_path = save_temp_file(feedback_video, "video") | |
save_feedback( | |
email=st.session_state.email, | |
place=place_to_search or "Unknown", | |
state=state, | |
district=district, | |
text=feedback_text.strip(), | |
img_path=img_path, | |
audio_path=audio_path, | |
video_path=video_path | |
) | |
st.sidebar.success("Thank you! Feedback submitted.") | |
else: | |
st.sidebar.warning("Please enter your feedback text.") | |