@st.fragment(run_every='2s')
def user_update_main():
user_df = fetch_user_data(st.session_state.acc_id)
print(user_df)
# st.write(user_df)
st.data_editor(user_df)
When using st.write after fetching data, it updates smoothly without jumping. However, when using st.data_editor, it jumps when new values or rows are added. How can I fix this?"
Would you like suggestions on how to solve the jumping issue with st.data_editor?