0
0
mirror of https://github.com/yude-jp/yude.jp synced 2025-10-12 19:28:43 +09:00

Remove logging for debug, translate msgs for error handling

This commit is contained in:
2021-05-30 14:11:40 +09:00
parent 557ff11a82
commit 3dd345c10f
3 changed files with 6 additions and 6 deletions

View File

@@ -10,7 +10,7 @@ export default function Minecraft(props) {
const [dataMinecraft, setDataMinecraft] = useState({ hits: [] });
const [data, setData] = useState({ hits: [] });
const fail = t('minecraft:fail')
useEffect(() => {
const fetchData = async () => {
const result = await axios(
@@ -23,12 +23,10 @@ export default function Minecraft(props) {
if (data === undefined){
console.log("[Minecraft Query] データの取得に失敗しました。 / Failed to retrieve data.")
console.log(data)
return (
<p>Failed to retrieve data</p>
<p>{fail}</p>
)
}else{
console.log(data)
const status = data.online
const player = data.players && data.players.online
const playing = t('minecraft:playing', {count: player})