Skip to content

Commit

Permalink
[FIX] student registration period
Browse files Browse the repository at this point in the history
  • Loading branch information
juliaryoshida committed Dec 14, 2023
1 parent 3a04678 commit bdbd808
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/pages/NewEnrolmentElectives/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/NewEnrolmentLP/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit bdbd808

Please sign in to comment.