Spaces:
Runtime error
Runtime error
Commit
•
b1910da
1
Parent(s):
02b4e01
small fix
Browse files- public/index.html +1 -1
public/index.html
CHANGED
@@ -119,7 +119,7 @@ function app() {
|
|
119 |
const elapsed = (lastTokenAt - this.lastTokenAt) / 1000
|
120 |
this.lastTokenAt = lastTokenAt
|
121 |
if (elapsed > this.timeoutInSec) {
|
122 |
-
console.log(`Something went wrong, it too more than ${timeoutInSec} seconds to generate a token.`)
|
123 |
this.state = 'stopped'
|
124 |
return
|
125 |
}
|
|
|
119 |
const elapsed = (lastTokenAt - this.lastTokenAt) / 1000
|
120 |
this.lastTokenAt = lastTokenAt
|
121 |
if (elapsed > this.timeoutInSec) {
|
122 |
+
console.log(`Something went wrong, it too more than ${this.timeoutInSec} seconds to generate a token.`)
|
123 |
this.state = 'stopped'
|
124 |
return
|
125 |
}
|