Skip to content

Commit

Permalink
CORE-579: remove unnecessary export
Browse files Browse the repository at this point in the history
  • Loading branch information
andy-commonsku committed May 24, 2024
1 parent a00eecb commit 60c567d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/@commonsku/styles/DateRangePicker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export type DateRangePickerProps = Omit<
initialActiveTab?: "custom" | "preset";
};

export const checkDateYear = (date: Date | null | undefined): boolean => {
const checkDateYear = (date: Date | null | undefined): boolean => {
if (!date || !isValid(date)) {
return false;
}
Expand Down

0 comments on commit 60c567d

Please sign in to comment.