prakharg24 commited on
Commit
d9c4e98
·
verified ·
1 Parent(s): 322e9eb

Update my_pages/pre_information_loss.py

Browse files
Files changed (1) hide show
  1. my_pages/pre_information_loss.py +6 -8
my_pages/pre_information_loss.py CHANGED
@@ -44,12 +44,10 @@ def render():
44
  st.markdown("---")
45
  col1, col2, col3 = st.columns([1, 4, 1])
46
 
47
- if previous_page is not None:
48
- with col1:
49
- if st.button("Previous"):
50
- go_to("landing")
51
 
52
- if next_page is not None:
53
- with col3:
54
- if st.button("Next"):
55
- go_to("information_loss")
 
44
  st.markdown("---")
45
  col1, col2, col3 = st.columns([1, 4, 1])
46
 
47
+ with col1:
48
+ if st.button("Previous"):
49
+ go_to("landing")
 
50
 
51
+ with col3:
52
+ if st.button("Next"):
53
+ go_to("information_loss")