diff --git a/src/hub.js b/src/hub.js
index dc9ab1bdc525faf7a56e4619da415017da5a4b38..904bb63de5df211c29a1153e6d7ec796d2e97234 100644
--- a/src/hub.js
+++ b/src/hub.js
@@ -307,6 +307,8 @@ async function runBotMode(scene, entryManager) {
 
 document.addEventListener("DOMContentLoaded", async () => {
   const scene = document.querySelector("a-scene");
+  scene.removeAttribute("keyboard-shortcuts"); // Remove F and ESC hotkeys from aframe
+
   const hubChannel = new HubChannel(store);
   const entryManager = new SceneEntryManager(hubChannel);
   entryManager.init();
diff --git a/src/react-components/ui-root.js b/src/react-components/ui-root.js
index c38b79d5edd9c66345dce6db5c598ca70dc3082e..a72231c2fba05b7e7d777367a5482808c4a3bde3 100644
--- a/src/react-components/ui-root.js
+++ b/src/react-components/ui-root.js
@@ -440,7 +440,7 @@ class UIRoot extends Component {
     if (!this.props.forcedVREntryType || !this.props.forcedVREntryType.endsWith("_now")) {
       this.goToEntryStep(ENTRY_STEPS.audio_setup);
     } else {
-      setTimeout(this.onAudioReadyButton, 3000); // Need to wait otherwise input doesn't work :/
+      this.onAudioReadyButton();
     }
   };