fix: remove key interatcion for slot buttons
This commit is contained in:
parent
869ebf7e88
commit
c1163fd71e
|
@ -9,6 +9,9 @@ export default function Slot({source, onClick, qty = 1}) {
|
|||
<button
|
||||
className={styles.slot}
|
||||
onClick={onClick}
|
||||
onKeyDown={(event) => {
|
||||
event.preventDefault();
|
||||
}}
|
||||
>
|
||||
<div
|
||||
className={styles.slotInner}
|
||||
|
|
Loading…
Reference in New Issue
Block a user