From 411d83523ea420b11d980bb1d7613ba4b0b37a6f Mon Sep 17 00:00:00 2001 From: riefive Date: Mon, 17 Nov 2025 17:10:14 +0700 Subject: [PATCH] fix: error in lib date --- app/lib/date.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/app/lib/date.ts b/app/lib/date.ts index 1d01b162..4abfc6d8 100644 --- a/app/lib/date.ts +++ b/app/lib/date.ts @@ -65,11 +65,6 @@ export function getFormatDateId(date: Date) { const yyyy = date.getFullYear() return `${dd} ${mm} ${yyyy}` } - return { - idFormat, - extFormat - }; -} export function formatDateYyyyMmDd(isoDateString: string): string { const date = new Date(isoDateString);