We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fa2e29 commit 8f0265eCopy full SHA for 8f0265e
client/src/store/parserMiddleware.js
@@ -43,6 +43,9 @@ export default (store) => (next) => (action) => {
43
const {plugins} = newParserSettings;
44
45
newParserSettings.plugins = plugins.filter((a) => {
46
+ if (a === 'importAssertions')
47
+ return false;
48
+
49
return a !== 'importAttributes' && a[0] !== 'importAttributes';
50
});
51
}
0 commit comments