From 2d549ba22fa27585fba47428ff1c24402e8b69d1 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Thu, 22 May 2025 03:49:29 -0400 Subject: [PATCH] Voice wizard: Wait 10s for update entity to change state (#25556) --- .../voice-assistant-setup/voice-assistant-setup-step-update.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dialogs/voice-assistant-setup/voice-assistant-setup-step-update.ts b/src/dialogs/voice-assistant-setup/voice-assistant-setup-step-update.ts index 999197139b..fc25a08ca3 100644 --- a/src/dialogs/voice-assistant-setup/voice-assistant-setup-step-update.ts +++ b/src/dialogs/voice-assistant-setup/voice-assistant-setup-step-update.ts @@ -131,7 +131,7 @@ export class HaVoiceAssistantSetupStepUpdate extends LitElement { ); this._refreshTimeout = window.setTimeout(() => { this._nextStep(); - }, 5000); + }, 10000); } else { this._nextStep(); }