Commit
·
9949f7e
1
Parent(s):
69c29cf
small fix
Browse files- public/index.html +1 -1
public/index.html
CHANGED
@@ -138,7 +138,7 @@ function app() {
|
|
138 |
const elapsed = (lastTokenAt - this.lastTokenAt) / 1000
|
139 |
this.lastTokenAt = lastTokenAt
|
140 |
if (elapsed > this.timeoutInSec) {
|
141 |
-
console.log(`Something went wrong, it too more than ${timeoutInSec} seconds to generate a token.`)
|
142 |
this.state = 'stopped'
|
143 |
return
|
144 |
}
|
|
|
138 |
const elapsed = (lastTokenAt - this.lastTokenAt) / 1000
|
139 |
this.lastTokenAt = lastTokenAt
|
140 |
if (elapsed > this.timeoutInSec) {
|
141 |
+
console.log(`Something went wrong, it too more than ${this.timeoutInSec} seconds to generate a token.`)
|
142 |
this.state = 'stopped'
|
143 |
return
|
144 |
}
|