GoodML commited on
Commit
cc6527f
1 Parent(s): cdff604

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -4
app.py CHANGED
@@ -104,8 +104,7 @@ def main():
104
  st.sidebar.write("Feel free to check out my other apps:")
105
 
106
 
107
- # Create a form using st.form context manager
108
- with st.form("app_selection_form"):
109
  st.write("Select an App:")
110
  app_links = {
111
  "Movie-mind": "https://movie-mind.streamlit.app/",
@@ -122,8 +121,6 @@ def main():
122
  st.sidebar.success("Redirected successfully!")
123
  st.markdown(f'<meta http-equiv="refresh" content="0;URL={selected_app_url}">', unsafe_allow_html=True)
124
 
125
-
126
-
127
 
128
  # Dropdown menu for other app links
129
 
 
104
  st.sidebar.write("Feel free to check out my other apps:")
105
 
106
 
107
+ with st.sidebar.form("app_selection_form"):
 
108
  st.write("Select an App:")
109
  app_links = {
110
  "Movie-mind": "https://movie-mind.streamlit.app/",
 
121
  st.sidebar.success("Redirected successfully!")
122
  st.markdown(f'<meta http-equiv="refresh" content="0;URL={selected_app_url}">', unsafe_allow_html=True)
123
 
 
 
124
 
125
  # Dropdown menu for other app links
126