diff --git a/frontend/pages/launch_bot/app.py b/frontend/pages/launch_bot/app.py index 99dd0a7..c2ea54c 100644 --- a/frontend/pages/launch_bot/app.py +++ b/frontend/pages/launch_bot/app.py @@ -5,7 +5,7 @@ from streamlit_elements import elements, mui from frontend.components.dashboard import Dashboard from frontend.components.launch_strategy_v2 import LaunchStrategyV2 -from utils.st_utils import initialize_st_page +from frontend.st_utils import initialize_st_page CARD_WIDTH = 6 CARD_HEIGHT = 3 diff --git a/frontend/pages/master_conf/app.py b/frontend/pages/master_conf/app.py index c92ae53..5d59277 100644 --- a/frontend/pages/master_conf/app.py +++ b/frontend/pages/master_conf/app.py @@ -6,8 +6,7 @@ from frontend.components.dashboard import Dashboard from frontend.components.editor import Editor from frontend.components.launch_master_bot_card import LaunchMasterBotCard from frontend.components.master_conf_file_explorer import MasterConfFileExplorer -from utils.st_utils import initialize_st_page - +from frontend.st_utils import initialize_st_page initialize_st_page(title="Credentials", icon="🗝️", initial_sidebar_state="collapsed")