We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 656cbdd commit 97a3307Copy full SHA for 97a3307
interface/app_pages/components/data_source_selector.py
@@ -16,11 +16,6 @@ def render_sidebar_data_source_selector(config=None) -> None:
16
registry = get_data_sources_registry()
17
18
st.sidebar.markdown("### 데이터 소스")
19
- enable_data_source = st.sidebar.checkbox(
20
- "데이터 소스 적용", value=True, key="enable_data_source"
21
- )
22
- if not enable_data_source:
23
- return
24
25
mode_index = 0 if (config.data_source_mode or "datahub").lower() == "datahub" else 1
26
selected_mode = st.sidebar.radio(
0 commit comments