Commit f1d34baa by asranov0003

fix: notification from date 90 days

parent c7cf2600
......@@ -18,7 +18,7 @@ const Notifications: React.FC = () => {
const getDefaultDates = () => {
const dateTo = new Date();
const dateFrom = new Date(dateTo);
dateFrom.setDate(dateTo.getDate() - 30);
dateFrom.setDate(dateTo.getDate() - 90);
return { dateFrom, dateTo };
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment