Summary
When generating a large number of tabs with st.tabs, unmanageable tabs may occur.
I would like to know if there is any way to avoid this issue without reducing the number of characters in the tabs.
Steps to reproduce
Code snippet:
import streamlit as st
tabs = st.tabs([f"Tab of {i}" for i in range(50)])
Expected behavior:
I want to access hidden tabs, like scroll.
Actual behavior:
hidden tabs.
Debug info
- Streamlit version: 1.23.1
- Python version: 3.10.5