From 99758f524e82881680b02069e5d2d977cc6e4229 Mon Sep 17 00:00:00 2001 From: "Bobby Abellana (aider)" Date: Tue, 18 Feb 2025 09:40:41 -0800 Subject: [PATCH] refactor: Update Streamlit experimental_rerun() to rerun() --- src/streamlit_app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/streamlit_app.py b/src/streamlit_app.py index cd7ad1e..069ae8f 100644 --- a/src/streamlit_app.py +++ b/src/streamlit_app.py @@ -525,7 +525,7 @@ if st.session_state.error_log: # Add clear button if st.button("Clear Error Log"): st.session_state.error_log = {} - st.experimental_rerun() + st.rerun() else: st.success("No errors encountered in current session")