aboutsummaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
authorankit-thanekar007 <ankit.thanekar007@gmail.com>2021-03-24 09:57:46 -0700
committerankit-thanekar007 <ankit.thanekar007@gmail.com>2021-03-24 16:11:31 -0700
commit47bb3139e4ff697d7a6ca81c8146fc7372adafa9 (patch)
treed5eed900980a3ca19015127335ca1c5342e98c71 /src/utils
parent24a3e50c62df4f9c64a103154af2746c1f2ce8d0 (diff)
Added Cornell badges
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/search.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/search.ts b/src/utils/search.ts
index 4293ff25..bdd6c042 100644
--- a/src/utils/search.ts
+++ b/src/utils/search.ts
@@ -8,7 +8,7 @@ import {ProfilePreviewType, CategoryPreviewType} from '../types';
*/
export const getSearchSuggestions = (): string[] => {
const suggestions: string[] = [];
- for (const category of BADGE_DATA) {
+ for (const category of BADGE_DATA['Cornell University']) {
for (const interest of category.data) {
suggestions.push(interest.badgeName);
}