修复 typo

This commit is contained in:
Qumolama.d 2022-07-14 15:10:21 +08:00
parent f579c37908
commit 5a56b240e9
Signed by: Lama3L9R
GPG Key ID: 1762AFC05157CE18
1 changed files with 3 additions and 3 deletions

View File

@ -25,8 +25,8 @@ export const PageRegister = () => {
const username = usernameInput.current?.value
const password = passwordInput.current?.value
const email = emailInput.current?.value
const invitationCode = passwordInput.current?.value
const validationCode = invitationCodeInput.current?.value
const invitationCode = invitationCodeInput.current?.value
const validationCode = validationCodeInput.current?.value
if(!username || !password) {
setIllegalMessgae("请将以下内容全部输入")
setIllegal(true)
@ -45,7 +45,7 @@ export const PageRegister = () => {
if(texture.SKIN || texture.CAPE) {
textureMigrations = {
skin: texture.SKIN?.url ?? undefined,
cape: texture.SKIN?.url ?? undefined,
cape: texture.CAPE?.url ?? undefined,
}
}
}