Skip to content

Commit

Permalink
Merge branch 'develop' into feat_demo_hasta_la_windows_vista_yes_i_ma…
Browse files Browse the repository at this point in the history
…de_this_joke_before
  • Loading branch information
NeOMakinG authored Mar 6, 2025
2 parents 10f1259 + a698461 commit d0f25bb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/Modals/Receive/ReceiveInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ import { Text } from '@/components/Text'
import type { TextPropTypes } from '@/components/Text/Text'
import { getChainAdapterManager } from '@/context/PluginProvider/chainAdapterSingleton'
import { useWallet } from '@/hooks/useWallet/useWallet'
import { firstFourLastFour } from '@/lib/utils'
import { selectPortfolioAccountMetadataByAccountId } from '@/state/slices/selectors'
import { useAppSelector } from '@/state/store'

Expand Down Expand Up @@ -138,7 +139,7 @@ export const ReceiveInfo = ({ asset, accountId }: ReceivePropsType) => {
await navigator.clipboard.writeText(receiveAddress)
const title = translate('modals.receive.copied', translatePayload)
const status = 'success'
const description = receiveAddress
const description = firstFourLastFour(receiveAddress)
toast({ description, title, status, ...toastPayload })
} catch (e) {
const title = translate('modals.receive.copyFailed', translatePayload)
Expand Down

0 comments on commit d0f25bb

Please sign in to comment.