Skip to content

Commit

Permalink
chore: fix relative import (#4096)
Browse files Browse the repository at this point in the history
  • Loading branch information
maze-runnar authored Feb 15, 2020
1 parent 8f93f06 commit 4e66a53
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion app/initializers/extensions.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import '../extensions/ember-table/component';
import 'open-event-frontend/extensions/ember-table/component';

export function initialize() {}

Expand Down
3 changes: 1 addition & 2 deletions app/services/current-user.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import Service from '@ember/service';
import { inject as service } from '@ember/service';
import Service, { inject as service } from '@ember/service';
import { isEmpty } from '@ember/utils';
import { resolve } from 'rsvp';

Expand Down
3 changes: 1 addition & 2 deletions app/services/device.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
import $ from 'jquery';
import Service from '@ember/service';
import Service, { inject as service } from '@ember/service';
import { computed } from '@ember/object';
import { equal, or } from '@ember/object/computed';
import { debounce } from '@ember/runloop';
import { forOwn } from 'lodash-es';
import { inject as service } from '@ember/service';

/**
* Keeping this outside the service object to keep it lean and faster to loop over
Expand Down
4 changes: 2 additions & 2 deletions tests/test-helper.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Application from '../app';
import Application from 'open-event-frontend/app';
import QUnit from 'qunit';
import config from '../config/environment';
import config from 'open-event-frontend/config/environment';
import { setApplication } from '@ember/test-helpers';
import { start } from 'ember-qunit';
import loadEmberExam from 'ember-exam/test-support/load';
Expand Down

0 comments on commit 4e66a53

Please sign in to comment.