Skip to content

Commit

Permalink
Change from date
Browse files Browse the repository at this point in the history
  • Loading branch information
hieronx committed May 29, 2024
1 parent dd5bcfc commit da09f8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion centrifuge-app/src/components/Report/ReportContext.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export function ReportContextProvider({ children }: { children: React.ReactNode

// Global filters
const [startDate, setStartDate] = React.useState(
new Date(Date.now() - 30 * 24 * 60 * 60 * 1000).toISOString().slice(0, 10)
new Date(new Date().getFullYear(), 0, 1, 1).toISOString().slice(0, 10)
)
const [endDate, setEndDate] = React.useState(new Date().toISOString().slice(0, 10))
const [report, setReport] = React.useState<Report>('investor-tx')
Expand Down

0 comments on commit da09f8b

Please sign in to comment.