From 0ec1da37fc8b5a3dc1e18bd2b386f6dd903a6001 Mon Sep 17 00:00:00 2001 From: sripwoud Date: Mon, 9 Sep 2024 17:10:06 +0200 Subject: [PATCH] fix(client): update github link --- client/src/app/page.tsx | 2 +- client/src/components/ExternalLink.tsx | 2 +- client/src/lib/constants.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/client/src/app/page.tsx b/client/src/app/page.tsx index 1af4d92..7e89d60 100644 --- a/client/src/app/page.tsx +++ b/client/src/app/page.tsx @@ -1,6 +1,6 @@ 'use client' import { ExternalLink } from 'c/ExternalLink' -import { Links } from 'l/types' +import { Links } from 'l/constants' import Link from 'next/link' export default function Home() { diff --git a/client/src/components/ExternalLink.tsx b/client/src/components/ExternalLink.tsx index 9c88cc5..5592efb 100644 --- a/client/src/components/ExternalLink.tsx +++ b/client/src/components/ExternalLink.tsx @@ -1,4 +1,4 @@ -import type { Links } from 'l/types' +import type { Links } from 'l/constants' import Link from 'next/link' import type { FC, ReactNode } from 'react' diff --git a/client/src/lib/constants.ts b/client/src/lib/constants.ts index 9ca2c63..cbda164 100644 --- a/client/src/lib/constants.ts +++ b/client/src/lib/constants.ts @@ -19,6 +19,6 @@ export enum ProofStep { export enum Links { ANDROID_APP = 'https://play.google.com/store/apps/details?id=com.proofofpassportapp', - GITHUB = 'https://github.com/dog18/dog18', + GITHUB = 'https://github.com/dog-18/dog18', IOS_APP = 'https://apps.apple.com/us/app/proof-of-passport/id6478563710', }