Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/ProfessorPopup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export const fetchInstructorAndCourseGPA = async (
console.log('courseSubject: ' + courseSubject);

const profResponse = await fetch(
'https://cpp-scheduler.herokuapp.com/data/instructors/find',
'https://api.cppscheduler.com/data/professors/find',
{
method: 'POST',
headers: {
Expand All @@ -107,7 +107,7 @@ export const fetchInstructorAndCourseGPA = async (
);

const courseResponse = await fetch(
'https://cpp-scheduler.herokuapp.com/data/instructions/find',
'https://api.cppscheduler.com/data/instructions/find',
{
method: 'POST',
headers: {
Expand Down
2 changes: 1 addition & 1 deletion src/components/SearchBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ export const fetchInstructorGPA = async (

try {
const response = await fetch(
'https://cpp-scheduler.herokuapp.com/data/instructors/find',
'https://api.cppscheduler.com/data/professors/find',
{
method: 'POST',
headers: {
Expand Down