Update app.py
Browse files
app.py
CHANGED
@@ -250,13 +250,11 @@ with col1:
|
|
250 |
# Add new Creative Idea input field
|
251 |
creative_idea = st.text_area("Idea Creativa", placeholder="Ejemplo: Tu curso es como Netflix: ofrece contenido que engancha y soluciones que la gente realmente quiere ver", height=100)
|
252 |
|
253 |
-
# Submit button
|
254 |
-
submit = st.button("Generar Emails")
|
255 |
|
256 |
-
#
|
257 |
-
|
258 |
-
# Submit button
|
259 |
-
submit = st.button("Generar Emails")
|
260 |
|
261 |
# Crear un único acordeón para fórmula, creatividad y ángulo
|
262 |
with st.expander("Personaliza tus emails"):
|
|
|
250 |
# Add new Creative Idea input field
|
251 |
creative_idea = st.text_area("Idea Creativa", placeholder="Ejemplo: Tu curso es como Netflix: ofrece contenido que engancha y soluciones que la gente realmente quiere ver", height=100)
|
252 |
|
253 |
+
# Submit button with a unique key
|
254 |
+
submit = st.button("Generar Emails", key="generate_emails_button")
|
255 |
|
256 |
+
# Remove the duplicate submit button that appears below
|
257 |
+
# submit = st.button("Generar Emails") <- This line should be removed
|
|
|
|
|
258 |
|
259 |
# Crear un único acordeón para fórmula, creatividad y ángulo
|
260 |
with st.expander("Personaliza tus emails"):
|