I am using Snowflake notebooks and trying to create a simple form.
import streamlit as st
with st.form(key='my_form'):
text_input = st.text_input(label='Enter some text')
submit_button = st.form_submit_button(label='Submit')
I am getting an error message with a link that takes me to a Github page that I am having trouble understanding. How can I resolve the issue?
Note that I have other streamlit functions working just fine in other parts of the notebook such as st.button, st.multiselect, st.session_state, etc.