hey there! deployed my first community cloud app the other day!
I have a couple st.button
components that open other links on the web, which work great locally, but seem to not have any effect when using the deployed app via SCC. The logic is pretty basic:
if st.button("Open this project in another page"):
url = URLS["explore"].format(**{
'url': st.session_state.url,
'account_id': st.session_state.account_id,
'project_id': selected_project.projectId,
'page': ''
})
print("opening: " + url)
webbrowser.open_new_tab(url)
I threw that print()
in there for debugging purposes, and donβt see that in the logs on the deployed app at all. Anything I should try to debug?