From 5719e3ec1ae0c3197acc39f33d78af52a571de8c Mon Sep 17 00:00:00 2001 From: Raykov-MS Date: Thu, 4 Jun 2026 17:13:16 +0300 Subject: [PATCH] fix --- main.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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