Skip to content

Commit

Permalink
fix(wire): remove WireContextEvent (camelcase) (#1681)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Venkiteswaran authored Feb 11, 2020
1 parent df90507 commit 33b91a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@lwc/wire-service/src/wiring.ts
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ export class WireEventTarget {
});
this._cmp.dispatchEvent(internalDomEvent);
return false; // canceling signal since we don't want this to propagate
} else if (evt.type === 'WireContextEvent' || evt.type === 'wirecontextevent') {
} else if (evt.type === 'wirecontextevent') {
// TODO [#1357]: remove this branch
return this._cmp.dispatchEvent(evt);
} else {
Expand Down

0 comments on commit 33b91a2

Please sign in to comment.