Skip to content

Commit

Permalink
Fix app re-exports
Browse files Browse the repository at this point in the history
Some re-exports didn't exist. In the process, this also streamlines the re-export accordingly.
  • Loading branch information
Francesco Novy committed Feb 25, 2020
1 parent 32a5bfb commit a2f2350
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 9 deletions.
4 changes: 1 addition & 3 deletions app/helpers/n.js
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
import n from 'ember-l10n/helpers/n';

export default n;
export { default } from 'ember-l10n/helpers/n';
2 changes: 1 addition & 1 deletion app/helpers/pn.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export { default, pn } from 'ember-l10n/helpers/pn';
export { default } from 'ember-l10n/helpers/pn';
2 changes: 1 addition & 1 deletion app/helpers/pt.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export { default, pt } from 'ember-l10n/helpers/pt';
export { default } from 'ember-l10n/helpers/pt';
2 changes: 1 addition & 1 deletion app/helpers/t-var.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export { default, tVar } from 'ember-l10n/helpers/t-var';
export { default } from 'ember-l10n/helpers/t-var';
4 changes: 1 addition & 3 deletions app/helpers/t.js
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
import t from 'ember-l10n/helpers/t';

export default t;
export { default } from 'ember-l10n/helpers/t';

0 comments on commit a2f2350

Please sign in to comment.