Skip to content

Commit

Permalink
chore(runtime): lint fix (#3319)
Browse files Browse the repository at this point in the history
  • Loading branch information
2heal1 authored Dec 5, 2024
1 parent 2677800 commit cafc5f0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/runtime/src/utils/load.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ async function loadEsmEntry({
`import("${entry}").then(callbacks[0]).catch(callbacks[1])`,
)([resolve, reject]);
} else {
import(/* webpackIgnore: true */ /* @vite-ignore */ entry).then(resolve).catch(reject);
import(/* webpackIgnore: true */ /* @vite-ignore */ entry)
.then(resolve)
.catch(reject);
}
} else {
resolve(remoteEntryExports);
Expand Down

0 comments on commit cafc5f0

Please sign in to comment.