fix pointerMove case (#38356)

Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/38356

fix the correct case of this event

  Changelog:
    [General][Fixed] - fix the correct case of this event

Reviewed By: javache

Differential Revision: D47480741

fbshipit-source-id: a600f4921c59c571f2da251b36674a98c8c7e51f
This commit is contained in:
Juan Luis Herrero Estrada
2023-07-17 08:33:12 -07:00
committed by Facebook GitHub Bot
parent 995bb3e995
commit eadbfb86c6
@@ -139,7 +139,7 @@ void TouchEventEmitter::onPointerDown(const PointerEvent &event) const {
}
void TouchEventEmitter::onPointerMove(const PointerEvent &event) const {
dispatchUniqueEvent("pointermove", std::make_shared<PointerEvent>(event));
dispatchUniqueEvent("pointerMove", std::make_shared<PointerEvent>(event));
}
void TouchEventEmitter::onPointerUp(const PointerEvent &event) const {