Pulp cursor keys not responding. Error in devtools console when using Chrome & Windows 11

Hi,
I am using Windows 11 with Chrome, version 137 and noticed that the cursor do not move the player. I have tested a new template game.

Screenshot of error in console:

I have tried closing the browser and clearing data but nothing seems to work.
I do not have any extensions running.

Any help would be much appreciated

Do you have a gamepad (like an xbox controller etc) plugged in? Try removing it

I looked at the pulp player's source and it looks like having a gamepad may stop input for basically everyone. I don't think people from Panic read this, but if they do:
you need to change the "updateGamepad" function; all the dpad button numbers are shifted up two, so var freshRIGHT = pad.buttons[17].pressed; will try to access a non-existing button causing the error seen here (and also up and down will trigger on left and right, the home button will trigger left.) I also assume the A and B buttons are not bound to what they expect

Thank you that has solved it! I really appreciate your help, thanks