Spacebar intercepted

On pages using Phaser canvas where I createCursorKeys, I am unable to use the space bar in input fields on that page. I am only listening for Left and Right keyboad input - Is there a different solution I should be using that won’t interfere with the rest of the page?

(create)
cursors = scene.input.keyboard.createCursorKeys();

(update)
if (cursors.right.isDown) this.cameras.main.scrollX += 5;
if (cursors.left.isDown) this.cameras.main.scrollX -= 5;

One way is to avoid createCursorKeys():

cursors = scene.input.keyboard.addKeys({/* left, right, up, down … */});

Another is

// After `addCursorKeys()`:
scene.input.keyboard.removeCapture('SPACE');

the removeCapture worked - thank you very much