Skip to content

Commit

Permalink
[Release] Hotfix 2.26.6 => 2.26.7 (patch) (#11736)
Browse files Browse the repository at this point in the history
* chore: bump version 2.26.7

* fix: incorrect farcaster uri (#11737)

---------

Co-authored-by: nuanyang233 <[email protected]>
  • Loading branch information
guanbinrui and nuanyang233 authored Aug 19, 2024
1 parent df73df6 commit 8ae1222
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"yarn": ">=999.0.0",
"npm": ">=999.0.0"
},
"version": "2.26.6",
"version": "2.26.7",
"private": true,
"license": "AGPL-3.0-or-later",
"scripts": {
Expand Down
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 8ae1222

Please sign in to comment.