fix: fixed the issue that the prompt word for registering an account is not in English and fixed the issue where the last message would keep loading if the backend reported an error during chat and fixed the issue where the next button would float above the file list on the file upload page (#133)

* feat: fixed the issue where the next button would float above the file list on the file upload page.

* feat: fixed the issue where the last message would keep loading if the backend reported an error during chat.

* fix: fixed the issue that the prompt word for registering an account is not in English
This commit is contained in:
balibabu
2024-03-19 19:21:35 +08:00
committed by GitHub
parent 9a843667b3
commit d38e92aac8
7 changed files with 107 additions and 42 deletions

View File

@ -51,7 +51,7 @@ const model: DvaModel<LoginModelState> = {
console.log();
const { retcode } = data;
if (retcode === 0) {
message.success('注册成功!');
message.success('Registered!');
}
return retcode;
},