0
0
mirror of https://github.com/yude-jp/yude.jp synced 2025-11-25 22:04:16 +09:00

Avoid using toString()

This commit is contained in:
2021-09-24 19:08:39 +09:00
parent 7ad04ba8ef
commit 3898a6951d

View File

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