Skip to content

Commit acd8243

Browse files
author
Lizzie Lerwill
committed
fix: remove unused line
1 parent 59e9a84 commit acd8243

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

  • src/components/experimental/DatePicker/util

src/components/experimental/DatePicker/util/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ function isCalendarLike(v: unknown): v is CalendarLike {
1111

1212
export function tryParse(raw: string, fmt: string, locale?: Locale): Date | null {
1313
if (!raw?.trim()) return null;
14-
1514
const p = dfParse(raw, fmt, new Date(), { locale });
1615
if (dfIsValid(p)) return p;
1716
const loose = new Date(raw);

0 commit comments

Comments
 (0)