Skip to content

Commit

Permalink
add Firefly
Browse files Browse the repository at this point in the history
  • Loading branch information
artlu99 committed Nov 3, 2024
1 parent 02458ac commit 9836d47
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions src/components/apps/cast/AltClientLinks.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import {
degencastLink,
farquestLink,
fireflyLink,
herocastLink,
recasterLink,
supercastLink,
Expand All @@ -27,6 +28,9 @@ export const AltClientLinks: React.FC<AltClientLinksProps> = ({ castHash, castFi
</Link>{' '}
<Link to={supercastLink({ hash: castHash })} target="_blank">
[supercast]
</Link>{' '}
<Link to={fireflyLink({ hash: castHash })} target="_blank">
[Firefly]
</Link>
{maybeFarquestLink && (
<Link to={maybeFarquestLink} target="_blank">
Expand Down
2 changes: 1 addition & 1 deletion src/constants/altClients.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,5 @@ export const herocastLink = (props: LinkProps) => {

export const fireflyLink = (props: LinkProps) => {
const { hash } = props;
return `https://firefly.mask.social/${hash}`;
return `https://firefly.mask.social/post/farcaster/${hash}`;
};

0 comments on commit 9836d47

Please sign in to comment.