Update app.py
Browse files
app.py
CHANGED
@@ -161,7 +161,7 @@ if submitted or 'dictee' in st.session_state:
|
|
161 |
if st.button("📝 Correction", key="submit_correction"):
|
162 |
st.session_state.correction = correction_dictee(dictee, dictee_user)
|
163 |
|
164 |
-
if st.session_state
|
165 |
st.divider()
|
166 |
st.markdown("### 🎉 Voici la correction (*Par IA*) :")
|
167 |
st.markdown(st.session_state.correction)
|
|
|
161 |
if st.button("📝 Correction", key="submit_correction"):
|
162 |
st.session_state.correction = correction_dictee(dictee, dictee_user)
|
163 |
|
164 |
+
if 'correction' in st.session_state:
|
165 |
st.divider()
|
166 |
st.markdown("### 🎉 Voici la correction (*Par IA*) :")
|
167 |
st.markdown(st.session_state.correction)
|