Skip to content

Commit

Permalink
fix utd trends link
Browse files Browse the repository at this point in the history
  • Loading branch information
GiridharRNair committed Nov 11, 2024
1 parent b34f6a5 commit abc5caf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/ProfessorResults.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ function ProfResults({ professorInfo }) {
const { isOpen, onOpen, onClose } = useDisclosure();

const RateMyProfessorUrl = `https://www.ratemyprofessors.com/professor/${id}`;
const UTDGradesUrl = `https://utdgrades.com/results?search=${subject ? subject + course_number + "+" : ""}${name.replace(" ", "+")}`;
const UTDTrendsUrl = `https://trends.utdnebula.com/dashboard?searchTerms=${subject ? subject + "+" + course_number : ""}%2C${name.replace(" ", "+")}`;
const UTDGradesUrl = `https://utdgrades.com/results?search=${subject && subject + course_number + "+"}${name.replace(" ", "+")}`;
const UTDTrendsUrl = `https://trends.utdnebula.com/dashboard?searchTerms=${subject && subject + "+" + course_number + "%2C"}${name.replace(" ", "+")}`;
const UTDProfileUrl = `https://profiles.utdallas.edu/browse?search=${name.replace(" ", "+")}`;

return (
Expand Down

0 comments on commit abc5caf

Please sign in to comment.