Skip to content

Commit

Permalink
Merge pull request #217 from comfortable-panda/more-fav
Browse files Browse the repository at this point in the history
Changed maximum of favorite courses to 100
  • Loading branch information
das08 authored Dec 17, 2023
2 parents 0121879 + eae7b0b commit b5d3dcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/features/favorite/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { getCourseSiteID } from "../../utils";
* Limit maximum number of course sites
* @type {int}
*/
const MAX_FAVORITES = 20;
const MAX_FAVORITES = 100;

const getSiteIdAndHrefSiteNameMap = (): Map<string, { href: string, title: string }> => {
const sites = document.querySelectorAll(".fav-sites-entry");
Expand Down

0 comments on commit b5d3dcf

Please sign in to comment.