diff --git a/custom_components/tapo_control/config_flow.py b/custom_components/tapo_control/config_flow.py index a5a9915..becafe3 100644 --- a/custom_components/tapo_control/config_flow.py +++ b/custom_components/tapo_control/config_flow.py @@ -212,6 +212,7 @@ async def async_step_other_options(self, user_input=None): } ), errors=errors, + last_step=True, ) async def async_step_auth_cloud_password(self, user_input=None): @@ -260,6 +261,7 @@ async def async_step_auth_cloud_password(self, user_input=None): } ), errors=errors, + last_step=False, ) async def async_step_ip(self, user_input=None): @@ -339,6 +341,7 @@ async def async_step_ip(self, user_input=None): } ), errors=errors, + last_step=False, ) async def async_step_auth(self, user_input=None): @@ -438,6 +441,7 @@ async def async_step_auth(self, user_input=None): } ), errors=errors, + last_step=False, )