diff --git a/packages/ember-glimmer/lib/modifiers/action.js b/packages/ember-glimmer/lib/modifiers/action.js index bd3c77c6764..78f38c25522 100644 --- a/packages/ember-glimmer/lib/modifiers/action.js +++ b/packages/ember-glimmer/lib/modifiers/action.js @@ -208,17 +208,13 @@ export default class ActionModifierManager { update(actionState) { let { positional } = actionState; - let actionNameRef = positional.at(1); if (!actionNameRef[INVOKE]) { actionState.actionName = actionNameRef.value(); } - actionState.eventName = actionState.getEventName(); - // Not sure if this is needed? If we mutate the actionState is that good enough? - ActionHelper.unregisterAction(actionState); - ActionHelper.registerAction(actionState); + actionState.eventName = actionState.getEventName(); } getDestructor(modifier) {