diff --git a/src/systems/exit-on-blur.js b/src/systems/exit-on-blur.js
index e6263a101f5a2fd1f71cd4b122a12431104e2457..ef1ca38fe442bb803d2a16730ce4641e6bb070e0 100644
--- a/src/systems/exit-on-blur.js
+++ b/src/systems/exit-on-blur.js
@@ -13,7 +13,7 @@ AFRAME.registerSystem("exit-on-blur", {
     if (this.el.isMobile) {
       this.exitTimeout = setTimeout(() => {
         this.el.dispatchEvent(new CustomEvent("exit"));
-      }, 10 * 1000);
+      }, 60 * 1000);
     }
   },