From 8ae12224d5bb6d87c292eedfe783a6ccccafa1d8 Mon Sep 17 00:00:00 2001 From: guanbinrui <52657989+guanbinrui@users.noreply.github.com> Date: Mon, 19 Aug 2024 18:10:57 +0800 Subject: [PATCH] [Release] Hotfix 2.26.6 => 2.26.7 (patch) (#11736) * chore: bump version 2.26.7 * fix: incorrect farcaster uri (#11737) --------- Co-authored-by: nuanyang233 --- package.json | 2 +- .../src/SiteAdaptor/components/Farcaster/FarcasterList.tsx | 2 +- packages/web3-shared/base/src/helpers/resolver.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 7f05c4ee5e93..d71712ce18d5 100644 --- a/package.json +++ b/package.json @@ -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": { diff --git a/packages/plugins/Web3Profile/src/SiteAdaptor/components/Farcaster/FarcasterList.tsx b/packages/plugins/Web3Profile/src/SiteAdaptor/components/Farcaster/FarcasterList.tsx index 35d1cf2a5303..cff7377da9e8 100644 --- a/packages/plugins/Web3Profile/src/SiteAdaptor/components/Farcaster/FarcasterList.tsx +++ b/packages/plugins/Web3Profile/src/SiteAdaptor/components/Farcaster/FarcasterList.tsx @@ -93,7 +93,7 @@ interface FarcasterListItemProps { const FarcasterListItem = memo(({ 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 = return ( diff --git a/packages/web3-shared/base/src/helpers/resolver.ts b/packages/web3-shared/base/src/helpers/resolver.ts index 7390bbd0f018..bf0f1a133b7b 100644 --- a/packages/web3-shared/base/src/helpers/resolver.ts +++ b/packages/web3-shared/base/src/helpers/resolver.ts @@ -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: