Skip to content

Commit

Permalink
pass FID into wildcard link
Browse files Browse the repository at this point in the history
  • Loading branch information
artlu99 committed Jul 28, 2024
1 parent aa66c83 commit 39ce4a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/apps/cast/AltClientLinks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ 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({ hash: castHash });
const maybeWildcardLink = mobileOnly ? undefined : wildcardLink({ fid: castFid, hash: castHash });

return (
<S.Description>
Expand Down

0 comments on commit 39ce4a1

Please sign in to comment.