diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index edcc7919..3b07134f 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -23,7 +23,7 @@ jobs: # cache: npm - name: Set Variables Data - run: echo "REACT_APP_FOLLOWERS_ACCESS_KEY=${{ secrets.REACT_APP_FOLLOWERS_ACCESS_KEY }}" >> $GITHUB_ENV + run: echo "$REACT_APP_FOLLOWERS_ACCESS_KEY" env: REACT_APP_FOLLOWERS_ACCESS_KEY: ${{ secrets.REACT_APP_FOLLOWERS_ACCESS_KEY }} diff --git a/documentation/src/context/CommunityStats/index.tsx b/documentation/src/context/CommunityStats/index.tsx index 05a38f9f..d72c6a8c 100644 --- a/documentation/src/context/CommunityStats/index.tsx +++ b/documentation/src/context/CommunityStats/index.tsx @@ -26,7 +26,6 @@ export const CommunityStatsContext = createContext< >(undefined); const ACCESS_TOKEN = process.env.REACT_APP_FOLLOWERS_ACCESS_KEY; -console.log(ACCESS_TOKEN); export const CommunityStatsProvider: FC = ({ children }) => { const [loading, setLoading] = useState(true);