Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/generate-llms.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ jobs:
- name: Install dependencies
run: yarn install --frozen-lockfile

- name: Copy staging env file
- name: Copy prod env file
run: |
echo "${{ secrets.ENV_STAGING }}" | base64 -d > .env
echo "${{ secrets.ENV_PROD }}" | base64 -d > .env
rm -f .env.local

- name: Generate llms.txt
Expand Down
3 changes: 0 additions & 3 deletions src/pages/contributors.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ import SeoGenerator from '@components/SeoGenerator';

import ContributorsLayout from '@layouts/ContributorsLayout';

import DownloadIcon from './../assets/icons/download.svg';

const Contributors: FC<ContributorLocaleData> = ({ contributors }) => {
const router = useRouter();
const { locale } = router as TRouter;
Expand Down Expand Up @@ -46,7 +44,6 @@ const Contributors: FC<ContributorLocaleData> = ({ contributors }) => {
createdDate={data.createdAt}
modifiedDate={data.updatedAt}
/>
<DownloadIcon width={14} height={13} />
<ContributorsLayout
ref={darkThemeRef}
contributorsData={data}
Expand Down
Loading