Skip to content

Commit

Permalink
fix: error "unsupported top level event type spinnerStateChange" (#780)
Browse files Browse the repository at this point in the history
* try fix unsupported

* 4.4.1-alpha.0

* Update package.json

* Update RNDatePickerNativeComponent.ts
  • Loading branch information
henninghall committed Mar 18, 2024
1 parent 580d726 commit 551f615
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,12 @@ public Map getExportedCustomBubblingEventTypeConstants() {
.put("dateChange", MapBuilder.of("phasedRegistrationNames",
MapBuilder.of("bubbled", "onChange")
)
).build();
)
.put("spinnerStateChange", MapBuilder.of("phasedRegistrationNames",
MapBuilder.of("bubbled", "onStateChange")
)
)
.build();
}


Expand Down

0 comments on commit 551f615

Please sign in to comment.