From 30ecd84f113abbadf0111d3674cd158784d45a4e Mon Sep 17 00:00:00 2001 From: Akash Singh Date: Fri, 15 Mar 2024 23:43:06 +0530 Subject: [PATCH] Setup ENV Variables --- documentation/src/context/CommunityStats/index.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/documentation/src/context/CommunityStats/index.tsx b/documentation/src/context/CommunityStats/index.tsx index 28d12583..bc99be02 100644 --- a/documentation/src/context/CommunityStats/index.tsx +++ b/documentation/src/context/CommunityStats/index.tsx @@ -38,6 +38,7 @@ export const CommunityStatsContext = createContext< export const CommunityStatsProvider: FC = ({ children }) => { const { siteConfig } = useDocusaurusContext(); const followersAccessKey = siteConfig.customFields.AccessKey; + console.log('AccessKey:', followersAccessKey); const [loading, setLoading] = useState(true); const [githubStarCount, setGithubStarCount] = useState(0); const [githubFollowersCount, setGithubFollowersCount] = useState(0);