Display last turn correctly and show last guess properly

This commit is contained in:
Tim
2021-07-14 15:18:57 +02:00
parent 06f0797911
commit 24c5554a41
3 changed files with 35 additions and 15 deletions

View File

@@ -66,7 +66,6 @@ export default class PerudoApi {
}
private post<T extends ApiObject>(url: string, data?: any,): AxiosPromise<T> {
console.log(data);
return axios.post(PerudoApi.baseUrl + url, data).then((response: AxiosResponse) => {
// @ts-ignore
if (response?.data?.errors?.length > 0) {