Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/FarcasterAvatar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export function FarcasterAvatar({
)}
{linkProfile ? (
<a
href={`https://farcaster.com/${profile.username}`}
href={`https://farcaster.xyz/${profile.username}`}
target="_blank"
rel="noopener noreferrer"
className="text-foreground hover:text-accent transition-colors"
Expand Down
2 changes: 1 addition & 1 deletion src/components/ShareButtons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export function ShareButtons({ storylineId, title }: ShareButtonsProps) {
}
const fullText = `${shareText}\n${storyUrl}`;
window.open(
`https://farcaster.com/~/compose?text=${encodeURIComponent(fullText)}`,
`https://farcaster.xyz/~/compose?text=${encodeURIComponent(fullText)}`,
"_blank",
);
}, [platform, shareText, storyUrl]);
Expand Down
2 changes: 1 addition & 1 deletion src/components/WriterIdentity.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export async function WriterIdentity({ address }: { address: string }) {
/>
)}
<a
href={`https://farcaster.com/${profile.username}`}
href={`https://farcaster.xyz/${profile.username}`}
target="_blank"
rel="noopener noreferrer"
className="text-foreground hover:text-accent transition-colors"
Expand Down
2 changes: 1 addition & 1 deletion src/components/WriterIdentityClient.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export function WriterIdentityClient({ address, linkProfile = true }: { address:
)}
{linkProfile ? (
<a
href={`https://farcaster.com/${profile.username}`}
href={`https://farcaster.xyz/${profile.username}`}
target="_blank"
rel="noopener noreferrer"
className="text-foreground hover:text-accent transition-colors"
Expand Down
Loading