From ba016762ca6a66896e9e58c60fe3e03dd73e4d4d Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Fri, 2 Jul 2021 10:32:45 -0400 Subject: [PATCH] Remove unnecessary context argument --- modules/core/context.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/core/context.js b/modules/core/context.js index 27d074be3..5ae1e4a58 100644 --- a/modules/core/context.js +++ b/modules/core/context.js @@ -557,7 +557,7 @@ export function coreContext() { Object.values(services).forEach(service => { if (service && typeof service.init === 'function') { - service.init(context); + service.init(); } });