Reactでaxiosを使ってリクエストをすると、2回送られる問題【React.StrictMode問題】
index.js の
root.render(
<React.StrictMode>
<App />
</React.StrictMode>
);
を
root.render(
<App />
);
に直す。
補足
これは StrictMode が開発段階で動作チェックをするためにやっていること。
本番環境に移行した場合、2度実行されることはない。
そのため、放置していても問題はない。
参考元
https://stackoverflow.com/questions/73002902/api-getting-called-twice-in-react