From 59d53bfd5ee6322c90f4e9946e1dbc77d26d5a47 Mon Sep 17 00:00:00 2001 From: Zoltan Kochan Date: Mon, 18 Mar 2019 01:32:34 +0200 Subject: [PATCH] fix: remove confusing error message about bad layout --- packages/supi/src/getContext/checkCompatibility/index.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/supi/src/getContext/checkCompatibility/index.ts b/packages/supi/src/getContext/checkCompatibility/index.ts index 80bee96a90..52aa22da25 100644 --- a/packages/supi/src/getContext/checkCompatibility/index.ts +++ b/packages/supi/src/getContext/checkCompatibility/index.ts @@ -23,9 +23,7 @@ export default function checkCompatibility ( } if (!modules.layoutVersion || modules.layoutVersion !== LAYOUT_VERSION) { throw new ModulesBreakingChangeError({ - additionalInformation: 'The change was needed to make `independent-leafs` not the default installation layout', modulesPath: opts.modulesPath, - relatedIssue: 821, }) } }