Skip to content

Remove duplicate address key in .streamlit/config.toml#346

Merged
t0mdavid-m merged 2 commits intomainfrom
copilot/fix-duplicate-address-issue
Mar 3, 2026
Merged

Remove duplicate address key in .streamlit/config.toml#346
t0mdavid-m merged 2 commits intomainfrom
copilot/fix-duplicate-address-issue

Conversation

Copy link
Contributor

Copilot AI commented Mar 3, 2026

address = "0.0.0.0" was duplicated in the [server] section of .streamlit/config.toml. In TOML, duplicate keys are invalid per spec; parsers may silently use either value or raise an error.

Change

  • .streamlit/config.toml: Removed the redundant second address = "0.0.0.0" entry under [server]
# Before
[server]
address = "0.0.0.0"
maxUploadSize = 200
port = 8501
address = "0.0.0.0"  # duplicate

# After
[server]
address = "0.0.0.0"
maxUploadSize = 200
port = 8501
Original prompt

This section details on the original issue you should resolve

<issue_title>Dupplication of Address in config.toml</issue_title>
<issue_description>address = "0.0.0.0" occcurs twice</issue_description>

Comments on the Issue (you are @copilot in this section)


💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.

Co-authored-by: t0mdavid-m <57191390+t0mdavid-m@users.noreply.github.com>
Copilot AI changed the title [WIP] Fix duplication of address in config.toml file Remove duplicate address key in .streamlit/config.toml Mar 3, 2026
@t0mdavid-m t0mdavid-m marked this pull request as ready for review March 3, 2026 15:33
@t0mdavid-m t0mdavid-m merged commit c65d503 into main Mar 3, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Dupplication of Address in config.toml

2 participants