From a7f4ce7cfc584c28f31e2488634980ce11686f77 Mon Sep 17 00:00:00 2001 From: artlu99 Date: Thu, 31 Oct 2024 11:03:14 -0400 Subject: [PATCH] RIP Wildcard client --- public/curated-channels.json | 3 +-- src/assets/curated-channels.json | 3 +-- src/components/apps/cast/AltClientLinks.tsx | 8 -------- src/constants/altClients.ts | 5 ----- 4 files changed, 2 insertions(+), 17 deletions(-) diff --git a/public/curated-channels.json b/public/curated-channels.json index fb3b6df..392c4e5 100644 --- a/public/curated-channels.json +++ b/public/curated-channels.json @@ -54,8 +54,7 @@ "supercast", "nook", "fc-devs", - "frames-devs", - "wildcardclub" + "frames-devs" ], "dev": [ "neynar", diff --git a/src/assets/curated-channels.json b/src/assets/curated-channels.json index fb3b6df..392c4e5 100644 --- a/src/assets/curated-channels.json +++ b/src/assets/curated-channels.json @@ -54,8 +54,7 @@ "supercast", "nook", "fc-devs", - "frames-devs", - "wildcardclub" + "frames-devs" ], "dev": [ "neynar", diff --git a/src/components/apps/cast/AltClientLinks.tsx b/src/components/apps/cast/AltClientLinks.tsx index 29e60db..b8e5d2a 100644 --- a/src/components/apps/cast/AltClientLinks.tsx +++ b/src/components/apps/cast/AltClientLinks.tsx @@ -5,7 +5,6 @@ import { recasterLink, supercastLink, warpcastLink, - wildcardLink, } from '@app/constants/altClients'; import { useResponsive } from '@app/hooks/useResponsive'; import { Link } from 'react-router-dom'; @@ -20,7 +19,6 @@ export const AltClientLinks: React.FC = ({ castHash, castFi const maybeFarquestLink = farquestLink({ fid: castFid, hash: castHash }); const maybeRecasterLink = mobileOnly ? recasterLink({ hash: castHash }) : undefined; const maybeHerocastLink = mobileOnly ? undefined : herocastLink({ hash: castHash }); - const maybeWildcardLink = mobileOnly ? undefined : wildcardLink({ fid: castFid, hash: castHash }); return ( @@ -51,12 +49,6 @@ export const AltClientLinks: React.FC = ({ castHash, castFi [Herocast] )} - {maybeWildcardLink && ( - - {' '} - [Wildcard] - - )} ); }; diff --git a/src/constants/altClients.ts b/src/constants/altClients.ts index 59abd56..ea9f88e 100644 --- a/src/constants/altClients.ts +++ b/src/constants/altClients.ts @@ -40,8 +40,3 @@ export const herocastLink = (props: LinkProps) => { const { hash } = props; return `https://app.herocast.xyz/conversation/${hash}`; }; - -export const wildcardLink = (props: LinkProps) => { - const { fid, hash } = props; - return fid ? `https://app.wildcard.lol/cast/${hash}/${fid}` : undefined; -};