From 2a2a4c47c9822f1ac29d6de5c9c270e3793704bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Oliveira?= Date: Mon, 11 Apr 2022 14:12:09 +0100 Subject: [PATCH] fix: increase delay on terms and conditions accept button --- lib/brain.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/brain.js b/lib/brain.js index b9d2414e1..423c210c6 100644 --- a/lib/brain.js +++ b/lib/brain.js @@ -2325,7 +2325,7 @@ Brain.prototype.acceptTerms = function acceptTerms () { // and redirect user to start screen this.tx = Tx.update(this.tx, { termsAccepted: true }) this.startScreen() - }, 100) + }, 1000) } function chooseBillDispenser (config) {