Hello,
Issues:
The button "ADD Letter" it calls add_letter which adds current_letter from server state but there's a ~700ms prediction delay, so the letter shown may already be stale when you click. this is preventing the word to form while we try to create a word.
fix:
Send the current letter from the browser with the request, so it adds exactly what's displayed.
Changes of files in template/index.html only.
This makes the button add exactly the letter visible on screen at click time.
Hello,
Issues:
The button "ADD Letter" it calls add_letter which adds current_letter from server state but there's a ~700ms prediction delay, so the letter shown may already be stale when you click. this is preventing the word to form while we try to create a word.
fix:
Send the current letter from the browser with the request, so it adds exactly what's displayed.
Changes of files in template/index.html only.
This makes the button add exactly the letter visible on screen at click time.