Skip to content

Commit c5b0625

Browse files
committed
Fix incorrect import with default export
1 parent 0a7024e commit c5b0625

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/lib/external/ensure-template-parser.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export function ensureTemplateParser(
2929
): void {
3030
try {
3131
import("@angular-eslint/utils")
32-
.then(({ default: utils }) => {
32+
.then((utils) => {
3333
try {
3434
utils.ensureTemplateParser(context);
3535
} catch {

0 commit comments

Comments
 (0)