Basic generation page

This commit is contained in:
2025-03-06 23:37:43 -06:00
parent 330f958d55
commit b46ba6fd2c
5 changed files with 369 additions and 2 deletions

View File

@@ -91,7 +91,7 @@ export default defineComponent({
.catch(error => {
if (error.response.status == 409) {
// still generating, try again
setInterval(2000, this.fetchSeed.bind(this));
setTimeout(this.fetchSeed.bind(this), 2000);
} else {
this.error = "Seed not found. :(";
}