diff --git a/web/src/pages/TransactionsPage.tsx b/web/src/pages/TransactionsPage.tsx
index 319711b..bdcff9a 100644
--- a/web/src/pages/TransactionsPage.tsx
+++ b/web/src/pages/TransactionsPage.tsx
@@ -64,12 +64,24 @@ export default function TransactionsPage() {
return [...categoryOptions, ...planOptions];
}, [dashboard?.variableCategories, dashboard?.fixedPlans]);
+ const currentMonthLabel = useMemo(
+ () =>
+ new Intl.DateTimeFormat("en-US", {
+ month: "long",
+ year: "numeric",
+ }).format(new Date()),
+ []
+ );
+
return (