Remove default mastodon instance in config flow (#126204)

Remove default mastodon instance
This commit is contained in:
Andrew Jackson 2024-09-18 10:28:33 +01:00 committed by GitHub
parent 63929a1177
commit e2c6d2765a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 2 deletions

View File

@ -28,7 +28,6 @@ STEP_USER_DATA_SCHEMA = vol.Schema(
{ {
vol.Required( vol.Required(
CONF_BASE_URL, CONF_BASE_URL,
default=DEFAULT_URL,
): TextSelector(TextSelectorConfig(type=TextSelectorType.URL)), ): TextSelector(TextSelectorConfig(type=TextSelectorType.URL)),
vol.Required( vol.Required(
CONF_CLIENT_ID, CONF_CLIENT_ID,

View File

@ -9,7 +9,7 @@
"access_token": "[%key:common::config_flow::data::access_token%]" "access_token": "[%key:common::config_flow::data::access_token%]"
}, },
"data_description": { "data_description": {
"base_url": "The URL of your Mastodon instance." "base_url": "The URL of your Mastodon instance e.g. https://mastodon.social."
} }
} }
}, },