From eae7b0bad75d2e8a0e2e8fee66e3f43cde747e0b Mon Sep 17 00:00:00 2001 From: BuildTools Date: Sun, 17 Dec 2023 12:29:15 +0900 Subject: [PATCH] Changed maximum of favorite courses to 100 --- src/features/favorite/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/features/favorite/index.ts b/src/features/favorite/index.ts index f592b70..4979832 100644 --- a/src/features/favorite/index.ts +++ b/src/features/favorite/index.ts @@ -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 => { const sites = document.querySelectorAll(".fav-sites-entry");