From 257cdddc5f2461e6d35ec4b940237f58800a0209 Mon Sep 17 00:00:00 2001 From: Josh Dover <1813008+joshdover@users.noreply.github.com> Date: Tue, 31 Aug 2021 17:13:58 +0200 Subject: [PATCH] Increase timeout for displaying welcome interstitial for new users (#110498) --- src/plugins/home/public/application/components/home.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/home/public/application/components/home.tsx b/src/plugins/home/public/application/components/home.tsx index 0572d7b80f986..d398311d30255 100644 --- a/src/plugins/home/public/application/components/home.tsx +++ b/src/plugins/home/public/application/components/home.tsx @@ -87,7 +87,7 @@ export class Home extends Component { if (this.state.isLoading) { this.setState({ isWelcomeEnabled: false }); } - }, 500); + }, 10000); const hasUserIndexPattern = await this.props.hasUserIndexPattern();