79143540

Date: 2024-10-31 04:51:44
Score: 1
Natty:
Report link

To prevent triggering the Link if the button clicked

just add passHref in your Link tag and in your button click listener add

onClick={(evt) => {
   evt.preventDefault();
   evt.nativeEvent.stopImmediatePropagation();
   // your handler
}}

this work fined to me

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Eric