peteranderss0n

Results 3 comments of peteranderss0n
trafficstars

Can confirm I also have this issue with React 18

Until this is merged you can bypass the typescript error by setting the parameter as nullable: ` onChange={(value, country?) => {}} `

@lorenzobalzani the way I worked around it was to attach two click events. One normal onClick() and one for touch-screens ``` onTouchEnd={() => { //Do something }} ```