Jon Solow commited on
Commit
ac6561c
·
1 Parent(s): 902260e

Add a refresh button

Browse files
Files changed (1) hide show
  1. src/pages/10_Set_Your_Lineup.py +2 -0
src/pages/10_Set_Your_Lineup.py CHANGED
@@ -118,6 +118,8 @@ def get_page():
118
  st.write("Sorry, you must be logged in first to play")
119
  st.stop()
120
 
 
 
121
  existing_selections = get_user_team()
122
 
123
  qb_options, wr_options, rb_options, te_options, k_options = load_options()
 
118
  st.write("Sorry, you must be logged in first to play")
119
  st.stop()
120
 
121
+ if st.button("Refresh Data"):
122
+ st.rerun()
123
  existing_selections = get_user_team()
124
 
125
  qb_options, wr_options, rb_options, te_options, k_options = load_options()