Disabling Scroll Animation in st.chat_message Temporarily

Is there a way to temporarily suspend the scroll of st.chat_message? After retrieving a session with many messages, a scrolling animation is displayed. I would like it to load all the messages first and then display them all at once without the animation. Is it possible to achieve this?

test

    for message in st.session_state.messages:
        with st.chat_message(message["role"]):
            st.markdown(message["content"])```