Skip to content

Commit

Permalink
change xlsx.mjs to xlsx.js to assure jest can run tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kennethbruskiewicz committed Dec 8, 2023
1 parent b9153a1 commit 2e73c4d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/DataHarmonizer.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import Handsontable from 'handsontable';
import SheetClip from 'sheetclip';
import $ from 'jquery';
import i18next from 'i18next';
import { utils as XlsxUtils, read as xlsxRead } from 'xlsx/xlsx.mjs';
import { utils as XlsxUtils, read as xlsxRead } from 'xlsx/xlsx.js';
import { renderContent, urlToClickableAnchor } from './utils/content';
import { MULTIVALUED_DELIMITER } from './utils/fields';
import { wait, isValidHeaderRow } from '@/lib/utils/general';
Expand Down
2 changes: 1 addition & 1 deletion lib/utils/files.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { utils as XlsxUtils, writeFile } from 'xlsx/xlsx.mjs';
import { utils as XlsxUtils, writeFile } from 'xlsx/xlsx.js';
import { saveAs } from 'file-saver';

/**
Expand Down

0 comments on commit 2e73c4d

Please sign in to comment.