diff --git a/frontend/src/component/admin/network/NetworkTrafficUsage/NetworkTrafficUsage.tsx b/frontend/src/component/admin/network/NetworkTrafficUsage/NetworkTrafficUsage.tsx index 3c6ab14fb920..2bb43571bad7 100644 --- a/frontend/src/component/admin/network/NetworkTrafficUsage/NetworkTrafficUsage.tsx +++ b/frontend/src/component/admin/network/NetworkTrafficUsage/NetworkTrafficUsage.tsx @@ -169,11 +169,14 @@ export const NetworkTrafficUsage: VFC = () => { periodItem.month, Number.parseInt(tooltipItems[0].label), ); - return tooltipDate.toLocaleDateString('en-US', { - month: 'long', - day: 'numeric', - year: 'numeric', - }); + return tooltipDate.toLocaleDateString( + locationSettings?.locale, + { + month: 'long', + day: 'numeric', + year: 'numeric', + }, + ); }, includedTraffic, );