diff --git a/components/sections/contributors/RecentContributors.tsx b/components/sections/contributors/RecentContributors.tsx index 596e045..5053222 100644 --- a/components/sections/contributors/RecentContributors.tsx +++ b/components/sections/contributors/RecentContributors.tsx @@ -1,11 +1,13 @@ const fetchContributors = async () => { - const response = await fetch("https://raw.githubusercontent.com/v3xlabs/v3x-data/master/team/contributors.json"); + const response = await fetch( + 'https://raw.githubusercontent.com/v3xlabs/v3x-data/master/team/contributors.json' + ); const contributors = await response.json(); - return contributors as {contributors: string[]}; -} -export const RecentContributors = async () => { + return contributors as { contributors: string[] }; +}; +export const RecentContributors = async () => { const contributors = await fetchContributors(); return ( diff --git a/package.json b/package.json index 14280bd..2cbdadd 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ "postcss-config": "tsc postcss.config.ts --skipLibCheck --module commonjs --target es2015 --esModuleInterop true --allowSyntheticDefaultImports true --moduleResolution node", "tailwind-config": "tsc tailwind.config.ts --skipLibCheck --module commonjs --target es2015 --esModuleInterop true --allowSyntheticDefaultImports true --moduleResolution node", "next-config": "tsc next.config.ts --skipLibCheck --module commonjs --target es2015 --esModuleInterop true --allowSyntheticDefaultImports true --moduleResolution node", - "lint": "eslint -c .eslintrc.json --ext .ts ./src" + "lint": "eslint -c .eslintrc.json --ext .ts ." }, "keywords": [], "author": "",