diff --git a/main.py b/main.py index a6b5a8a..6574c4d 100644 --- a/main.py +++ b/main.py @@ -2,7 +2,7 @@ import streamlit as st from dotenv import load_dotenv from app.auth.service import AuthService, clear_session -from app.ui import render_env_check, render_profile +from app.ui import render_profile def main() -> None: @@ -10,7 +10,6 @@ def main() -> None: st.set_page_config(page_title="SFM Streamlit", page_icon=":lock:", layout="wide") st.title("SFM Streamlit: Keycloak-only auth") - render_env_check() if not AuthService().run(): return