Skip to content

Commit

Permalink
Fix route-connections.js Ember route import path
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinkucharczyk authored Aug 6, 2023
1 parent 7386bc6 commit fd355aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions addon/lib/route-connections.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import Ember from './ember-compat';
* for keeping track of what routes are connected to which outlet states.
*/

Ember.__loader.define('ember-custom-elements/route-connections', ['exports', '@ember/-internals/routing/lib/system/route'], function(_exports, _route) {
Ember.__loader.define('ember-custom-elements/route-connections', ['exports', '@ember/routing/route'], function(_exports, _route) {
'use strict';
Object.defineProperty(_exports, '__esModule', {
value: true
Expand All @@ -22,4 +22,4 @@ Ember.__loader.define('ember-custom-elements/route-connections', ['exports', '@e
});
const { default: ROUTE_CONNECTIONS } = Ember.__loader.require('ember-custom-elements/route-connections');

export default ROUTE_CONNECTIONS;
export default ROUTE_CONNECTIONS;

0 comments on commit fd355aa

Please sign in to comment.