Revert expense listing date format to en-US

This commit is contained in:
Bruno Bernardino
2025-08-23 08:10:59 +01:00
parent eabd888df2
commit c950e34c36
2 changed files with 2 additions and 2 deletions

View File

@@ -19,7 +19,7 @@ export default function ListExpenses(
timeZone: 'UTC', // Expense dates are stored without timezone info, so we need to force to UTC so it's consistent across db, server, and client
};
const dateFormat = new Intl.DateTimeFormat('en-GB', dateFormatOptions);
const dateFormat = new Intl.DateTimeFormat('en-US', dateFormatOptions);
return (
<section class='mx-auto max-w-7xl my-8 mt-12'>

View File

@@ -1,6 +1,6 @@
services:
website:
image: ghcr.io/bewcloud/bewcloud:v2.4.2
image: ghcr.io/bewcloud/bewcloud:v2.4.3
restart: always
ports:
- 127.0.0.1:8000:8000