Fix imap advanced settings not shown (#93813)

This commit is contained in:
Jan Bouwhuis 2023-05-30 19:37:07 +02:00 committed by GitHub
parent c678664d9a
commit 74741c7634
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -177,7 +177,7 @@ class ConfigFlow(config_entries.ConfigFlow, domain=DOMAIN):
return self.async_create_entry(title=title, data=user_input)
schema = self.add_suggested_values_to_schema(CONFIG_SCHEMA, user_input)
schema = self.add_suggested_values_to_schema(schema, user_input)
return self.async_show_form(step_id="user", data_schema=schema, errors=errors)
async def async_step_reauth(self, entry_data: Mapping[str, Any]) -> FlowResult: