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 a312fee commit bb23f4aCopy full SHA for bb23f4a
src/React/assets/src/register_controller.ts
@@ -39,7 +39,9 @@ export function registerReactControllerComponents(context: __WebpackModuleApi.Re
39
);
40
41
if (possibleValues.includes(name)) {
42
- throw new Error(`React controller "${name}" could not be resolved. Ensure the module exports the controller as default.`);
+ throw new Error(
43
+ `React controller "${name}" could not be resolved. Ensure the module exports the controller as default.`
44
+ );
45
}
46
47
throw new Error(`React controller "${name}" does not exist. Possible values: ${possibleValues.join(', ')}`);
0 commit comments