From 54092c68c74243979b33c06da96838c027c22dc5 Mon Sep 17 00:00:00 2001 From: cbrianbet Date: Wed, 19 Jun 2024 18:52:27 +0300 Subject: [PATCH] Update HomeVLCascade.js --- src/views/Home/HomeVLCascade.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/Home/HomeVLCascade.js b/src/views/Home/HomeVLCascade.js index ab293ccc..858edbc3 100644 --- a/src/views/Home/HomeVLCascade.js +++ b/src/views/Home/HomeVLCascade.js @@ -15,7 +15,7 @@ const HomeVLCascade = () => { const currentDate = moment(); // Check if the current date is before the 20th of the month - if (currentDate.date() < 19) { + if (currentDate.date() < 21) { // If true, subtract 2 months currentDate.subtract(2, 'months'); } else {