removed onkeyup w/ burnettk
This commit is contained in:
parent
57d576e653
commit
95f3c75732
|
@ -59,17 +59,9 @@ export default function ButtonWithConfirmation({
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
const onKeyUp = () => {
|
|
||||||
console.log('ehy');
|
|
||||||
};
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<main>
|
<main>
|
||||||
<Button
|
<Button onClick={handleShowConfirmationPrompt} variant="danger">
|
||||||
onClick={handleShowConfirmationPrompt}
|
|
||||||
variant="danger"
|
|
||||||
onKeyUp={onKeyUp}
|
|
||||||
>
|
|
||||||
{buttonLabel}
|
{buttonLabel}
|
||||||
</Button>
|
</Button>
|
||||||
{confirmationDialog()}
|
{confirmationDialog()}
|
||||||
|
|
Loading…
Reference in New Issue