Defining a route using the following code: ```js Router.route('/', () => { this.render('myTemplate'); }); ``` will print an error in the console: > Route dispatch never rendered. Did you forget to call this.next() in an onBeforeAction? while the same code but with a regular function callback will work as expected: ```js Router.route('/', function() { this.render('myTemplate'); }); ``` I know that the default way to define routes is with regular functions but shouldn't this theoretically work?