From d55173e8c1810aa8f0b7d7476e765b71908f0239 Mon Sep 17 00:00:00 2001 From: Felipe Coutinho Date: Sat, 2 May 2026 22:08:45 +0000 Subject: [PATCH] refactor(transactions): remover exports mortos dateFormatter e monthFormatter Co-Authored-By: Claude Opus 4.7 --- src/features/transactions/formatting-helpers.ts | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/src/features/transactions/formatting-helpers.ts b/src/features/transactions/formatting-helpers.ts index 7dc32e7..369fbc3 100644 --- a/src/features/transactions/formatting-helpers.ts +++ b/src/features/transactions/formatting-helpers.ts @@ -11,23 +11,6 @@ import { capitalize } from "@/shared/utils/string"; export { currencyFormatter }; -/** - * Date formatter for pt-BR locale (dd/mm/yyyy) - */ -export const dateFormatter = new Intl.DateTimeFormat("pt-BR", { - day: "2-digit", - month: "2-digit", - year: "numeric", -}); - -/** - * Month formatter for pt-BR locale (Month Year) - */ -export const monthFormatter = new Intl.DateTimeFormat("pt-BR", { - month: "long", - year: "numeric", -}); - /** * Formats a date string to localized format * @param value - ISO date string or null