From 9c4a0cc46dcbcfda743806fb5117f69faa3318d9 Mon Sep 17 00:00:00 2001 From: Samuel Aktar Laskar Date: Mon, 1 Apr 2024 16:45:09 +0530 Subject: [PATCH] Minor changes --- lib/api.ts | 1 - lib/types.ts | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) 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 {