Nested expanders

Hey,
it’s not working for me neither.
Maybe you can workaround with a popover ?

        col1, col2 = st.columns(2)
        groups = ['STORAGE-SUPPORT-TR', 'FLS-NETWORKS-TR', 'NETWORK-SUPPORT-TR', 'NETWORK-CHANGE-TR',
                  'NETWORK-CHANGE-TECHM', 'CISCO-ACI-CHANGE-APPROVERS']
        with st.expander(f"** changes listed in last 24 hours in time**", expanded=False):
            for group in groups:
                with st.container():
                    with st.popover(f"**Relationship Name : {group}**", icon="🔥"):
                        st.markdown(f"<div class='custom-text'><strong>Number:</strong> {group}</div>",
                                    unsafe_allow_html=True)