From 3f17c9ef86597285df3fb1f829f5eb9ac8a6662f Mon Sep 17 00:00:00 2001 From: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> Date: Tue, 14 Sep 2021 12:02:03 -0400 Subject: [PATCH] remove async lifecycle from global_search_bar plugin (#112058) (#112104) Co-authored-by: Pierre Gayvallet --- x-pack/plugins/global_search_bar/public/plugin.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/plugins/global_search_bar/public/plugin.tsx b/x-pack/plugins/global_search_bar/public/plugin.tsx index 954e4241966a0..dfce09bd12edc 100644 --- a/x-pack/plugins/global_search_bar/public/plugin.tsx +++ b/x-pack/plugins/global_search_bar/public/plugin.tsx @@ -23,7 +23,7 @@ export interface GlobalSearchBarPluginStartDeps { } export class GlobalSearchBarPlugin implements Plugin<{}, {}> { - public async setup() { + public setup() { return {}; }