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 39ce4a1 commit f2881f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/constants/altClients.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@ export const herocastLink = (props: LinkProps) => {
};

export const wildcardLink = (props: LinkProps) => {
const { hash } = props;
return `https://app.wildcard.lol/cast/${hash}/${fid}`;
const { fid, hash } = props;
return fid ? `https://app.wildcard.lol/cast/${hash}/${fid}` : undefined;
};

0 comments on commit f2881f6

Please sign in to comment.