diff --git a/.github/workflows/browser-test.yml b/.github/workflows/browser-test.yml index a8eef4dca9..84379d8902 100644 --- a/.github/workflows/browser-test.yml +++ b/.github/workflows/browser-test.yml @@ -41,5 +41,5 @@ jobs: - name: Install dependencies run: npm ci --include=optional - - name: Run brower-test + - name: Run browser-test run: npm run browser-test diff --git a/.github/workflows/move-new-issues-to-correct-docs-repo.yml b/.github/workflows/move-new-issues-to-correct-docs-repo.yml index f215fe25a1..32480afeab 100644 --- a/.github/workflows/move-new-issues-to-correct-docs-repo.yml +++ b/.github/workflows/move-new-issues-to-correct-docs-repo.yml @@ -48,7 +48,7 @@ jobs: owner: owner, repo: originalRepo, issue_number: issueNo, - body: `šŸ‘‹ Moving forward, we're asking that folks create all new Docs issues in the [${process.env.TEAM_ENGINEERING_REPO}](${process.env.TEAM_ENGINEERING_REPO}) repo and all new content issues in [${process.env.TEAM_CONTENT_REPO}](${process.env.TEAM_CONTENT_REPO}). We transferred it for you!` + body: `šŸ‘‹ You opened this issue in `${context.repo.repo}`. Moving forward, we're asking that folks create new issues in the following repositories instead:\n- For issues with the docs site, please submit to the [${process.env.TEAM_ENGINEERING_REPO}](/${owner}/${process.env.TEAM_ENGINEERING_REPO}) repo.\n- For all new content issues, please submit to the [${process.env.TEAM_CONTENT_REPO}](/${owner}/${process.env.TEAM_CONTENT_REPO}) repo.\n\nWe will transfer this issue for you!` }) // Transfer the issue to the correct repo diff --git a/components/Link.tsx b/components/Link.tsx index 7d21130510..a06b1ed36b 100644 --- a/components/Link.tsx +++ b/components/Link.tsx @@ -4,7 +4,7 @@ import { useMainContext } from 'components/context/MainContext' const { NODE_ENV } = process.env -const enableNextLinks = false +const enableNextLinks = true type Props = { locale?: string } & ComponentProps<'a'> export function Link(props: Props) { diff --git a/components/SidebarNav.tsx b/components/SidebarNav.tsx index 1c95af0509..86e917ddaf 100644 --- a/components/SidebarNav.tsx +++ b/components/SidebarNav.tsx @@ -10,7 +10,7 @@ import { useVersion } from './hooks/useVersion' export const SidebarNav = () => { const router = useRouter() - const { error, relativePath, isHomepageVersion } = useMainContext() + const { error, relativePath } = useMainContext() const { t } = useTranslation('header') return ( @@ -39,7 +39,7 @@ export const SidebarNav = () => {