diff --git a/lib/api.ts b/lib/api.ts index 851cc0a8..f98ae5cc 100644 --- a/lib/api.ts +++ b/lib/api.ts @@ -24,7 +24,6 @@ const points = { // Reviewing a PR would get 4 points // Finding a bug would add up to 4 points // Opening a PR would give a single point and merging it would give you the other 7 points, making 8 per PR -// For each linked issue in pr body, points would increase by 1. // Updating the EOD would get 2 points per day and additional 20 for regular daily updates plus 10 for just missing one function formatSlug(slug: string) { diff --git a/lib/types.ts b/lib/types.ts index 0640d5d4..29b9130e 100644 --- a/lib/types.ts +++ b/lib/types.ts @@ -21,7 +21,7 @@ export interface Contributor { slack: string; joining_date: string; role: "core" | "intern" | "operations" | "contributor"; - courses_completed?: string[]; + courses_completed: string[]; } export interface ActivityData {