From bdbd8083c72f8cbb0ae6042d2d876699c5930b55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BAlia=20Yoshida?= Date: Wed, 13 Dec 2023 23:50:24 -0300 Subject: [PATCH] [FIX] student registration period --- frontend/src/pages/NewEnrolmentElectives/index.js | 2 +- frontend/src/pages/NewEnrolmentLP/index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/pages/NewEnrolmentElectives/index.js b/frontend/src/pages/NewEnrolmentElectives/index.js index 79ce6707..208c0c91 100644 --- a/frontend/src/pages/NewEnrolmentElectives/index.js +++ b/frontend/src/pages/NewEnrolmentElectives/index.js @@ -50,7 +50,7 @@ const NewEnrolmentElectives = () => { const checkRegistrationPeriod = async () => { try { const response = await axios.get( - "https://backend-matriculai.vercel.app/registration/period" + "https://backend-matriculai.vercel.app/registration-period/current" ); const registrationPeriod = response.data; diff --git a/frontend/src/pages/NewEnrolmentLP/index.js b/frontend/src/pages/NewEnrolmentLP/index.js index ab74d5fc..fcd4429d 100644 --- a/frontend/src/pages/NewEnrolmentLP/index.js +++ b/frontend/src/pages/NewEnrolmentLP/index.js @@ -37,7 +37,7 @@ const NewEnrolmentLP = () => { const checkRegistrationPeriod = async () => { try { const response = await axios.get( - "https://backend-matriculai.vercel.app/registration/period" + "https://backend-matriculai.vercel.app/registration-period/current" ); const registrationPeriod = response.data;