From cfc6bf4da926b4331e0ca1bfc22d8e9507ef95c3 Mon Sep 17 00:00:00 2001 From: Sean Mooney Date: Wed, 28 Aug 2019 16:37:58 -0400 Subject: [PATCH] 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. --- src/onboarding/ha-onboarding.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/onboarding/ha-onboarding.ts b/src/onboarding/ha-onboarding.ts index 6c932a6326..13727d183a 100644 --- a/src/onboarding/ha-onboarding.ts +++ b/src/onboarding/ha-onboarding.ts @@ -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"); } }