Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/twofactor_gateway.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'js/service/registration.js')
-rw-r--r--js/service/registration.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/service/registration.js b/js/service/registration.js
index 87eac20..be9f019 100644
--- a/js/service/registration.js
+++ b/js/service/registration.js
@@ -4,7 +4,7 @@ export function startVerification() {
return new Promise((resolve, reject) => {
setTimeout(() => {
resolve();
- }, 400);
+ }, 2000);
})
}
@@ -12,6 +12,6 @@ export function tryVerification() {
return new Promise((resolve, reject) => {
setTimeout(() => {
resolve();
- }, 400);
+ }, 2000);
})
}