Skip to content

Commit

Permalink
fix: incorrect farcaster uri (#11737)
Browse files Browse the repository at this point in the history
  • Loading branch information
nuanyang233 authored Aug 14, 2024
1 parent 741606f commit a83341b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ interface FarcasterListItemProps {

const FarcasterListItem = memo<FarcasterListItemProps>(({ account }) => {
const { classes } = useStyles()
const profileUri = `https://firefly.mask.social/profile/farcaster/${account.fid}`
const profileUri = `https://firefly.mask.social/profile/${account.fid}?source=farcaster`
const farcasterIcon = <Icons.Farcaster size={30} />

return (
Expand Down
2 changes: 1 addition & 1 deletion packages/web3-shared/base/src/helpers/resolver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ export const resolveNextIDPlatformLink = (networkPlatform: NextIDPlatform, ident
case NextIDPlatform.SpaceId:
return `https://bscscan.com/address/${identifier}`
case NextIDPlatform.Farcaster:
return `https://firefly.mask.social/profile/farcaster/${identifier}`
return `https://firefly.mask.social/profile/${identifier}?source=farcaster`
case NextIDPlatform.Bit:
return `https://bit.cc/${name}`
case NextIDPlatform.Unstoppable:
Expand Down

0 comments on commit a83341b

Please sign in to comment.