update app.py

removed custom_markets field
This commit is contained in:
david-hummingbot
2025-05-28 16:51:28 +08:00
committed by GitHub
parent 84c68b7d3e
commit bfc9f399dd

View File

@@ -101,7 +101,10 @@ config_inputs = {}
cols = st.columns(NUM_COLUMNS)
for i, config in enumerate(config_map):
with cols[i % (NUM_COLUMNS - 1)]:
config_inputs[config] = st.text_input(config, type="password", key=f"{connector_name}_{config}")
if config == "custom_markets":
config_inputs[config] = {}
else:
config_inputs[config] = st.text_input(config, type="password", key=f"{connector_name}_{config}")
with cols[-1]:
if st.button("Submit Credentials"):