Update app.py
Browse files
app.py
CHANGED
@@ -66,7 +66,7 @@ if "question_no" not in st.session_state:
|
|
66 |
|
67 |
|
68 |
|
69 |
-
|
70 |
progress = st.progress((st.session_state.question_no) - 2/ 8)
|
71 |
age = st.text_input(f"How old are you?", key=st.session_state.question_no, placeholder="Type your answer")
|
72 |
if st.button("Next->"):
|
|
|
66 |
|
67 |
|
68 |
|
69 |
+
if st.session_state.question_no == 2:
|
70 |
progress = st.progress((st.session_state.question_no) - 2/ 8)
|
71 |
age = st.text_input(f"How old are you?", key=st.session_state.question_no, placeholder="Type your answer")
|
72 |
if st.button("Next->"):
|