Remove duplicate word from onboarding error (#3535)

Someone shared an error message in Discord and I noticed it mentioned the word "loading" twice in a row. This removes the duplicate word from the alert.
This commit is contained in:
Sean Mooney 2019-08-28 16:37:58 -04:00 committed by Paulus Schoutsen
parent 02e250cd04
commit cfc6bf4da9

View File

@ -123,7 +123,7 @@ class HaOnboarding extends litLocalizeLiteMixin(HassElement) {
this._steps = steps;
} catch (err) {
alert("Something went wrong loading loading onboarding, try refreshing");
alert("Something went wrong loading onboarding, try refreshing");
}
}