From 6fb0b1f327c9186c3084d68693bc53c16af5b2df Mon Sep 17 00:00:00 2001 From: yann300 Date: Fri, 10 Jul 2020 23:52:32 +0200 Subject: [PATCH] allow plugin to activate each other --- src/remixAppManager.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/remixAppManager.js b/src/remixAppManager.js index 9d008ff5824..c1d4fdf1700 100644 --- a/src/remixAppManager.js +++ b/src/remixAppManager.js @@ -29,7 +29,7 @@ export class RemixAppManager extends PluginManager { } async canActivate (from, to) { - return canActivate(from.name) + return true // canActivate(from.name) } async canDeactivate (from, to) {