Skip to content

Commit bb23f4a

Browse files
committed
[React] satisfy coding style rules
1 parent a312fee commit bb23f4a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/React/assets/src/register_controller.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@ export function registerReactControllerComponents(context: __WebpackModuleApi.Re
3939
);
4040

4141
if (possibleValues.includes(name)) {
42-
throw new Error(`React controller "${name}" could not be resolved. Ensure the module exports the controller as default.`);
42+
throw new Error(
43+
`React controller "${name}" could not be resolved. Ensure the module exports the controller as default.`
44+
);
4345
}
4446

4547
throw new Error(`React controller "${name}" does not exist. Possible values: ${possibleValues.join(', ')}`);

0 commit comments

Comments
 (0)