mirror of
https://github.com/d0zingcat/deploy.git
synced 2026-06-15 23:16:51 +00:00
update app.py
removed custom_markets field
This commit is contained in:
@@ -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"):
|
||||
|
||||
Reference in New Issue
Block a user