Skip to content

Commit bc741a0

Browse files
authored
fix: add missing return statement (#244)
1 parent 2c51a77 commit bc741a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ function contextify(loaderContext, context, request) {
9999
typeof loaderContext.utils !== "undefined" &&
100100
typeof loaderContext.utils.contextify === "function"
101101
) {
102-
loaderContext.utils.contextify(loaderContext.context, request);
102+
return loaderContext.utils.contextify(loaderContext.context, request);
103103
}
104104

105105
return request

0 commit comments

Comments
 (0)