Hey; thanks for the option` showEmailPrompt`. But I noticed when using `streamlit run app.py` together with this option I get the error ["Activation email not valid"](https://github.com/streamlit/streamlit/blob/23c637cfd9c32466129b380b40d6c90f490ae8f1/lib/streamlit/runtime/credentials.py#L189) This is because the activation step is [skipped](https://github.com/streamlit/streamlit/blob/23c637cfd9c32466129b380b40d6c90f490ae8f1/lib/streamlit/runtime/credentials.py#L250). _Originally posted by @MajorDaxx in https://github.com/streamlit/streamlit/issues/11395#issuecomment-3117325238_ (I was able to replicate this on 1.47.0 and also 1.48.0 ``` $uvx --with streamlit==1.47.0 streamlit run --server.showEmailPrompt=False app.py 2025-08-10 07:31:05.800 Activation email not valid. $uvx --with streamlit==1.48.0 streamlit run --server.showEmailPrompt=False app.py 2025-08-10 07:37:29.840 Activation email not valid. ``` )