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