Skip to content

Commit

Permalink
feat: remove wrong linebreak in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicolas Moreau committed Jul 31, 2023
1 parent 491c769 commit f5b7f1b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export default class ActionValidator {
});
} catch (error) {
if (error instanceof ActionFieldConfigurationValidationError) {
throw new ActionConfigurationValidationError(name, `\n${error.message}`);
throw new ActionConfigurationValidationError(name, `${error.message}`);
}

throw error;
Expand Down

0 comments on commit f5b7f1b

Please sign in to comment.