diff --git a/homeassistant/components/hydrawise/config_flow.py b/homeassistant/components/hydrawise/config_flow.py index 7087c4d2c34319..cfaaefcd03ad67 100644 --- a/homeassistant/components/hydrawise/config_flow.py +++ b/homeassistant/components/hydrawise/config_flow.py @@ -52,7 +52,10 @@ def _import_issue(self, error_type: str) -> ConfigFlowResult: is_fixable=False, severity=IssueSeverity.ERROR, translation_key="deprecated_yaml_import_issue", - translation_placeholders={"error_type": error_type}, + translation_placeholders={ + "error_type": error_type, + "url": "/config/integrations/dashboard/add?domain=hydrawise", + }, ) return self.async_abort(reason=error_type)