From d5b2a057121f9e5c8c7f23b7d2e539b21e3ffe41 Mon Sep 17 00:00:00 2001 From: Patrik Oldsberg Date: Fri, 16 Apr 2021 17:20:33 +0200 Subject: [PATCH] core-api: remove apiHolder creation check Signed-off-by: Patrik Oldsberg --- packages/core-api/src/app/App.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/packages/core-api/src/app/App.tsx b/packages/core-api/src/app/App.tsx index fdbee075fc..0557f4159c 100644 --- a/packages/core-api/src/app/App.tsx +++ b/packages/core-api/src/app/App.tsx @@ -306,9 +306,6 @@ export class PrivateAppImpl implements BackstageApp { this.verifyPlugins(this.plugins); // Initialize APIs once all plugins are available - if (this.apiHolder) { - throw new Error('Plugin holder was initialized too soon'); - } this.getApiHolder(); return result;