From fcf1183574ab7e6b2245677065d2c82e5f8d1aa4 Mon Sep 17 00:00:00 2001 From: Brian 'bdougie' Douglas Date: Mon, 1 Apr 2024 15:48:49 -0700 Subject: [PATCH] swapping github links for opensauced ones. --- src/lib/github.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/github.ts b/src/lib/github.ts index c735d0b4..0a57a2fb 100644 --- a/src/lib/github.ts +++ b/src/lib/github.ts @@ -2,10 +2,10 @@ const getAvatarLink = (username: string | null) => `https://github.com/${username ?? "github"}.png?size=460`; const getProfileLink = (username: string | null) => - `https://github.com/${username ?? ""}`; + `https://app.opensauced.pizza/user/${username ?? ""}`; const getRepoLink = (repoName: string | null) => - `https://app.opensauced.pizza/${repoName ?? ""}`; + `https://app.opensauced.pizza/s/${repoName ?? ""}`; const getRepoIssuesLink = (repoName: string | null) => `https://github.com/${repoName && `${repoName}/issues` || ""}`;