Skip to content

Commit

Permalink
change to .js export to eliminate jest warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
kennethbruskiewicz committed Sep 23, 2024
1 parent f28428c commit c98d619
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 @@ -6,7 +6,7 @@ import 'jquery-ui-bundle';
import 'jquery-ui/dist/themes/base/jquery-ui.css';

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 '@/lib/utils/content';
import { readFileAsync, updateSheetRange } from '@/lib/utils/files';
import { findSlotNamesForClass } from '@/lib/utils/templates';
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 c98d619

Please sign in to comment.