Skip to content
This repository was archived by the owner on Jan 22, 2026. It is now read-only.

Commit c6472e6

Browse files
author
Andrew Schneider
authored
Merge pull request #1766 from blockchain/feat/update-social-share
Fix(Update social share link after KYC)
2 parents 1f46628 + ab7c4cf commit c6472e6

1 file changed

Lines changed: 3 additions & 10 deletions

File tree

  • packages/blockchain-wallet-v4-frontend/src/modals/Exchange/IdentityVerification/Submitted

packages/blockchain-wallet-v4-frontend/src/modals/Exchange/IdentityVerification/Submitted/index.js

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import React from 'react'
22
import { reduxForm } from 'redux-form'
33
import { FormattedMessage, FormattedHTMLMessage } from 'react-intl'
44
import { compose, bindActionCreators } from 'redux'
5-
import { prop } from 'ramda'
65
import { connect } from 'react-redux'
76
import styled from 'styled-components'
87
import CopyToClipBoard from 'react-copy-to-clipboard'
@@ -19,10 +18,7 @@ import {
1918
import { Form } from 'components/Form'
2019
import { IdentityVerificationForm } from 'components/IdentityVerification'
2120

22-
const {
23-
CAMPAIGNS,
24-
ID_VERIFICATION_SUBMITTED_FORM
25-
} = model.components.identityVerification
21+
const { ID_VERIFICATION_SUBMITTED_FORM } = model.components.identityVerification
2622

2723
const SubmittedIdentityVerificationForm = styled(IdentityVerificationForm)`
2824
justify-content: center;
@@ -110,13 +106,10 @@ class Submitted extends React.PureComponent {
110106
const { campaign, identityVerificationActions, submitting } = this.props
111107
const { initialIsSunRiverTagged } = this.state
112108
const { isLinkCopied } = this.state
113-
const link = 'https://www.blockchain.com/getcrypto/claim'
109+
const link = 'https://www.blockchain.com/getcrypto'
114110
const tweetLink =
115111
'https://twitter.com/intent/tweet?text=' +
116-
`I just claimed free ${prop('coinName', CAMPAIGNS[campaign])} ${prop(
117-
'coinCode',
118-
CAMPAIGNS[campaign]
119-
)} from @blockchain. Get Yours ${link}`
112+
`I just enrolled in @blockchain's Airdrop Program so that I'm ready for their next %23crypto airdrop. Click below to learn more 👇 ${link}`
120113
const facebookLink = `https://www.facebook.com/sharer/sharer.php?u=${link}`
121114

122115
return (

0 commit comments

Comments
 (0)