From e18d11768ff847195cb17e4210fa66875254842a Mon Sep 17 00:00:00 2001 From: Avdhesh-Varshney <114330097+Avdhesh-Varshney@users.noreply.github.com> Date: Thu, 17 Oct 2024 17:38:13 +0530 Subject: [PATCH] interface-update --- src/app/contributors/page.tsx | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/src/app/contributors/page.tsx b/src/app/contributors/page.tsx index 0b8beef1..ada1975b 100644 --- a/src/app/contributors/page.tsx +++ b/src/app/contributors/page.tsx @@ -4,9 +4,24 @@ import Link from 'next/link'; import { useState, useEffect } from 'react'; interface Contributor { - html_url: string; - avatar_url: string; login: string; + id: number; + node_id: string; + avatar_url: string; + gravatar_id: string; + url: string; + html_url: string; + followers_url: string; + following_url: string; + gists_url: string; + starred_url: string; + subscriptions_url: string; + organizations_url: string; + repos_url: string; + events_url: string; + received_events_url: string; + type: string; + site_admin: boolean; contributions: number; }