Remove unnecessary context argument

This commit is contained in:
Bryan Housel
2021-07-02 10:32:45 -04:00
parent 8db1c1f7f5
commit ba016762ca
+1 -1
View File
@@ -557,7 +557,7 @@ export function coreContext() {
Object.values(services).forEach(service => {
if (service && typeof service.init === 'function') {
service.init(context);
service.init();
}
});