Skip to content

Commit

Permalink
fix(action): remove unnecessary toLowerCase conversion for action value
Browse files Browse the repository at this point in the history
Fixes #1697
  • Loading branch information
zachowj committed Dec 30, 2024
1 parent aed25df commit 64a200e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nodes/action/ActionController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export default class ActionController extends InputOutputController<
states,
);

let action: string = parsedMessage.action.value.toLowerCase();
let action: string = parsedMessage.action.value;
// TODO: Remove in version 1.0
if (parsedMessage.action.source === DataSource.Transformed) {
if (!this.#hasDeprecatedWarned) {
Expand Down

0 comments on commit 64a200e

Please sign in to comment.