Skip to content

Commit

Permalink
Update Docs Links to ensdomains/docs repo (#180)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucemans committed Feb 21, 2024
1 parent 8afb46c commit 1593319
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ This guide will walk you through the process of contributing to the ENS docs. If

#### Create a new issue

If you spot a problem with the docs, [search if an issue already exists](https://github.com/ensdomains/docs-v2/issues). If a related issue doesn't exist, you can open a new issue using a relevant [issue form](https://github.com/ensdomains/docs-v2/issues/new).
If you spot a problem with the docs, [search if an issue already exists](https://github.com/ensdomains/docs/issues). If a related issue doesn't exist, you can open a new issue using a relevant [issue form](https://github.com/ensdomains/docs/issues/new).

#### Solve an issue

Scan through our [existing issues](https://github.com/ensdomains/docs-v2/issues) to find one that interests you. You can narrow down the search using `labels` as filters. As a general rule, we don't assign issues to anyone. If you find an issue to work on, you are welcome to open a PR with a fix.
Scan through our [existing issues](https://github.com/ensdomains/docs/issues) to find one that interests you. You can narrow down the search using `labels` as filters. As a general rule, we don't assign issues to anyone. If you find an issue to work on, you are welcome to open a PR with a fix.

### Make Changes

Expand Down
4 changes: 2 additions & 2 deletions app/src/components/Libraries.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const ensLibraries: Language[] = [
href: 'https://wagmi.sh/',
name: 'Wagmi',
description: '',
logo: '/icons/legacy/logos/wagmi.svg',
logo: undefined,
},
],
},
Expand All @@ -39,7 +39,7 @@ export const ensLibraries: Language[] = [
href: 'https://viem.sh/',
name: 'Viem',
description: '',
logo: '/icons/legacy/logos/viem.svg',
logo: undefined,
},
{
href: 'https://docs.ethers.org/',
Expand Down
4 changes: 2 additions & 2 deletions app/src/content/prose/repository/github/type.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ type URLType = string;
export type GithubRepositoryData = {
id: string;
node_id: string;
name: 'docs-v2';
full_name: 'ensdomains/docs-v2';
name: 'docs';
full_name: 'ensdomains/docs';
private: false;
// Big
owner: object;
Expand Down
2 changes: 1 addition & 1 deletion app/src/layout/details/variations/GitCommitLink.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { FC, PropsWithChildren } from 'react';
import { cx } from '@/lib/cx';

const prefix = 'docs';
const repo = 'ensdomains/docs-v2';
const repo = 'ensdomains/docs';

export const GitCommitLink: FC<
PropsWithChildren<{ file: string; hash: string }>
Expand Down
2 changes: 1 addition & 1 deletion app/src/layout/footer/contribute/ContributeLink.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { usePathname } from 'next/navigation';
import { FC } from 'react';
import { FiGithub } from 'react-icons/fi';

const ROOT_REPO = 'ensdomains/docs-v2';
const ROOT_REPO = 'ensdomains/docs';

export const ContributeLink: FC<{ url?: string }> = ({ url }) => {
if (!url) {
Expand Down
2 changes: 1 addition & 1 deletion app/src/layout/header/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export const Header = forwardRef<HTMLDivElement, { className?: string }>(
<div className="flex gap-4">
<MobileSearch />
<Link
href="https://github.com/ensdomains/docs-v2"
href="https://github.com/ensdomains/docs"
target="_blank"
aria-label="GitHub Repository"
>
Expand Down

0 comments on commit 1593319

Please sign in to comment.