From 51dee70ced0ce23fc8997696d8c20cd8f498cf86 Mon Sep 17 00:00:00 2001 From: Nuckyz <61953774+Nuckyz@users.noreply.github.com> Date: Fri, 21 Jun 2024 18:14:41 -0300 Subject: [PATCH] update error message --- src/webpack/webpack.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/webpack/webpack.tsx b/src/webpack/webpack.tsx index 49efd104a..8388a3fd8 100644 --- a/src/webpack/webpack.tsx +++ b/src/webpack/webpack.tsx @@ -429,7 +429,7 @@ export function mapMangledModule(code: string | string[], } } - const [proxy] = proxyInner(`Webpack mapMangled mapper filter matched no module. Filter: ${printFilter(filter)}`, "Webpack find with proxy called on a primitive value. This can happen if you try to destructure a primitive in the top level definition of the find."); + const [proxy] = proxyInner(`Webpack mapMangledModule mapper filter matched no module. Filter: ${printFilter(filter)}`, "Webpack find with proxy called on a primitive value. This can happen if you try to destructure a primitive in the top level definition of the find."); // Use the proxy to throw errors because no export matched the filter mapping[newName] = proxy; }