Skip to content

Commit

Permalink
feat(manager-dashboard): adjust value interface
Browse files Browse the repository at this point in the history
  • Loading branch information
ofr1tz committed Dec 17, 2024
1 parent 88de7c2 commit 8593cc8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions manager-dashboard/app/components/DateRangeInput/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ function sameMonth(foo: Date, bar: Date) {
}

export interface Value {
startDate: string;
endDate: string;
startDate?: string;
endDate?: string;
}

interface DateRendererProps extends CalendarDateProps {
Expand Down

0 comments on commit 8593cc8

Please sign in to comment.