Skip to content

Commit

Permalink
Fix lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
nwmac committed Dec 1, 2023
1 parent fad575c commit e3b6cff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/shared/addon/helpers/linkify.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { helper } from '@ember/component/helper';
import { htmlSafe } from '@ember/string';
import Ember from 'ember';
import linkifyStr from "linkify-string";
import linkifyStr from 'linkify-string';

const MAX_LENGTH = 1000;

Expand Down
2 changes: 1 addition & 1 deletion lib/shared/app/helpers/linkify.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
// https://github.com/ef4/ember-browserify#the-workaround
import linkifyStr from "linkify-string"; // eslint-disable-line no-unused-vars
import linkifyStr from 'linkify-string'; // eslint-disable-line no-unused-vars
export { default } from 'shared/helpers/linkify';

0 comments on commit e3b6cff

Please sign in to comment.