Rathapoom commited on
Commit
9caef31
1 Parent(s): 941e41b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -47,10 +47,10 @@ elif st.session_state["scene"] == 2:
47
  st.write("The patient is stable for now. What would you like to do?")
48
  choice = st.radio(
49
  "Choose your next step:",
50
- ["Select an option", "Observe and Wait", "Repeat Exam", "Measure Compartment Pressure"]
51
  )
52
 
53
- if choice == "Observe and Wait":
54
  st.write("Monitoring the patient... Please wait.")
55
  time.sleep(5) # Simulate waiting
56
  if st.session_state["pain_increase"]:
 
47
  st.write("The patient is stable for now. What would you like to do?")
48
  choice = st.radio(
49
  "Choose your next step:",
50
+ ["Select an option", "Observe and Monitor", "Repeat Exam", "Measure Compartment Pressure"]
51
  )
52
 
53
+ if choice == "Observe and Monitor":
54
  st.write("Monitoring the patient... Please wait.")
55
  time.sleep(5) # Simulate waiting
56
  if st.session_state["pain_increase"]: