Skip to content

Commit a2f2350

Browse files
author
Francesco Novy
committed
Fix app re-exports
Some re-exports didn't exist. In the process, this also streamlines the re-export accordingly.
1 parent 32a5bfb commit a2f2350

File tree

5 files changed

+5
-9
lines changed

5 files changed

+5
-9
lines changed

app/helpers/n.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
import n from 'ember-l10n/helpers/n';
2-
3-
export default n;
1+
export { default } from 'ember-l10n/helpers/n';

app/helpers/pn.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export { default, pn } from 'ember-l10n/helpers/pn';
1+
export { default } from 'ember-l10n/helpers/pn';

app/helpers/pt.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export { default, pt } from 'ember-l10n/helpers/pt';
1+
export { default } from 'ember-l10n/helpers/pt';

app/helpers/t-var.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export { default, tVar } from 'ember-l10n/helpers/t-var';
1+
export { default } from 'ember-l10n/helpers/t-var';

app/helpers/t.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
import t from 'ember-l10n/helpers/t';
2-
3-
export default t;
1+
export { default } from 'ember-l10n/helpers/t';

0 commit comments

Comments
 (0)