Skip to content

Commit

Permalink
utd trends url fix
Browse files Browse the repository at this point in the history
  • Loading branch information
GiridharRNair committed Oct 27, 2024
1 parent 65d31f8 commit 97bd9bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ProfessorResults.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ function ProfResults({ professorInfo }) {

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 + "+" : ""}${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 97bd9bd

Please sign in to comment.