From 938eb043c2b26a37c7fdc8efea20656557df4fb5 Mon Sep 17 00:00:00 2001 From: sharath <29162020+tnfssc@users.noreply.github.com> Date: Sat, 28 Jun 2025 17:25:48 +0000 Subject: [PATCH] fix(billing): update cutoff date for usage logs to June 28, 2025 --- backend/services/billing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/services/billing.py b/backend/services/billing.py index 6840f445..fd7036b2 100644 --- a/backend/services/billing.py +++ b/backend/services/billing.py @@ -276,7 +276,7 @@ async def get_usage_logs(client, user_id: str, page: int = 0, items_per_page: in # Use fixed cutoff date: June 26, 2025 midnight UTC # Ignore all token counts before this date - cutoff_date = datetime(2025, 6, 26, 0, 0, 0, tzinfo=timezone.utc) + cutoff_date = datetime(2025, 6, 28, 18, 0, 0, tzinfo=timezone.utc) start_of_month = max(start_of_month, cutoff_date)