From ebffe8988eca517cc75973214fb289d535d0cff4 Mon Sep 17 00:00:00 2001 From: smith Date: Thu, 25 Aug 2022 15:14:37 +0100 Subject: [PATCH] update naming convention on contributors component --- components/organisms/Contributors/contributors.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/components/organisms/Contributors/contributors.tsx b/components/organisms/Contributors/contributors.tsx index b3555c13b3..01d04d861f 100644 --- a/components/organisms/Contributors/contributors.tsx +++ b/components/organisms/Contributors/contributors.tsx @@ -1,12 +1,12 @@ import useContributorData from "lib/hooks/useContributorData"; import ContributorCard from "../ContributorCard/contributor-card"; const Contributors = (): JSX.Element =>{ - const data = useContributorData(); - const array = Array.apply(null, Array(9)); + const contributorData = useContributorData(); + const randomArray = Array.apply(null, Array(9)); return (
- {array.map((contributor, index) => ( - + {randomArray.map((contributor, index) => ( + ))}
);