Skip to content

Commit

Permalink
RIP Wildcard client
Browse files Browse the repository at this point in the history
  • Loading branch information
artlu99 committed Oct 31, 2024
1 parent 359d874 commit a7f4ce7
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 17 deletions.
3 changes: 1 addition & 2 deletions public/curated-channels.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,7 @@
"supercast",
"nook",
"fc-devs",
"frames-devs",
"wildcardclub"
"frames-devs"
],
"dev": [
"neynar",
Expand Down
3 changes: 1 addition & 2 deletions src/assets/curated-channels.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,7 @@
"supercast",
"nook",
"fc-devs",
"frames-devs",
"wildcardclub"
"frames-devs"
],
"dev": [
"neynar",
Expand Down
8 changes: 0 additions & 8 deletions src/components/apps/cast/AltClientLinks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand All @@ -20,7 +19,6 @@ export const AltClientLinks: React.FC<AltClientLinksProps> = ({ 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 (
<S.Description>
Expand Down Expand Up @@ -51,12 +49,6 @@ export const AltClientLinks: React.FC<AltClientLinksProps> = ({ castHash, castFi
[Herocast]
</Link>
)}
{maybeWildcardLink && (
<Link to={maybeWildcardLink} target="_blank">
{' '}
[Wildcard]
</Link>
)}
</S.Description>
);
};
5 changes: 0 additions & 5 deletions src/constants/altClients.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
};

0 comments on commit a7f4ce7

Please sign in to comment.