diff --git a/src/views/Home/HomeVLCascade.js b/src/views/Home/HomeVLCascade.js index 858edbc3..6fc0c7d5 100644 --- a/src/views/Home/HomeVLCascade.js +++ b/src/views/Home/HomeVLCascade.js @@ -6,7 +6,6 @@ import * as currentOnArtSelectors from '../../selectors/CT/CurrentOnArt/currentO import { formatNumber, roundNumber } from '../../utils/utils'; import DataCard from '../Shared/DataCard'; import moment from 'moment'; -import { ETL_DAY } from '../../constants'; const HomeVLCascade = () => { // const currentOnArt = useSelector( @@ -15,7 +14,7 @@ const HomeVLCascade = () => { const currentDate = moment(); // Check if the current date is before the 20th of the month - if (currentDate.date() < 21) { + if (currentDate.date() < 19) { // If true, subtract 2 months currentDate.subtract(2, 'months'); } else {