0
0
mirror of https://github.com/yude-jp/yude.jp synced 2024-06-09 23:36:01 +09:00

Avoid using toString()

This commit is contained in:
yude 2021-09-24 19:08:39 +09:00
parent 7ad04ba8ef
commit 3898a6951d
Signed by: yude
GPG Key ID: EB0FE5D925C4A968

View File

@ -26,7 +26,7 @@ function App (props) {
return <>404</>
} else {
return (
<>{data.username.toString()}</>
<>{data.username}</>
)
}
};