Merge branch 'pr/63' into production

This commit is contained in:
Pas 2025-11-10 15:04:29 -07:00
commit 62772b6bd6

View file

@ -174,6 +174,11 @@ export function KeyboardEvents() {
!dataRef.current.isInWatchParty &&
dataRef.current.enableHoldToBoost
) {
// Skip if it's a repeated event
if (evt.repeat) {
return;
}
// Skip if a button is targeted
if (
evt.target &&
@ -234,6 +239,11 @@ export function KeyboardEvents() {
k === " " &&
(!dataRef.current.enableHoldToBoost || dataRef.current.isInWatchParty)
) {
// Skip if it's a repeated event
if (evt.repeat) {
return;
}
// Skip if a button is targeted
if (
evt.target &&