Closed2

Error: Minified React error #418について

hoshitahoshita
Error: Minified React error #418; visit https://react.dev/errors/418?args[]= for the full message or use the non-minified dev environment for full errors and additional helpful warnings.
hoshitahoshita

原因

toLocaleDateString()によりサーバーサイドとクライアントサイドで異なる結果を返す可能性あったためエラーとして警告されていた模様。(Hydraitonの不一致)

https://react.dev/errors/418

改善策

toLocaleDateString()の引数に"ja-JP"を渡すことで環境依存により同じ結果を担保できるように変更

→無事にエラーを取り除くことができた

- new Date().toLocaleDateString()
+ new Date().toLocaleDateString("ja-JP")
このスクラップは2025/01/04にクローズされました