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 fc88231 commit 813a367Copy full SHA for 813a367
vs-code-extension/src/renderOpenEmailFile.ts
@@ -55,7 +55,7 @@ export async function renderOpenEmailFile(
55
56
// for future people debugging this: if this doesnt update the preview, might be because import keeps a cache
57
// and the hash is not being unique (unlikely though)
58
- const email = await import(builtFileWithCurrentContents);
+ const email = require(builtFileWithCurrentContents);
59
60
if (typeof email.default === "undefined") {
61
// this means there is no "export default ..." in the file
0 commit comments