Skip to content

Commit

Permalink
feat(update-finprom-approver-text): updated finprom approval text fro…
Browse files Browse the repository at this point in the history
…m being form Helford to Englebert and updated the date, also update finprom text on prices page
  • Loading branch information
jhagerman-bc committed Mar 4, 2024
1 parent e06e027 commit e72f300
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2873,7 +2873,7 @@
"tooltip.copied": "Copied!",
"tooltip.transaction.pending.eth": "Your transaction is currently pending. You can attempt to resend it with a higher fee.",
"txlist.change.tooltip.description": "This change address belongs to your wallet",
"uk.footer.banner.title": "This Financial Promotion has been approved by Helford Capital Partners LLP on {approvalDate}.",
"uk.footer.banner.title": "This Financial Promotion has been approved by Englebert Ltd on {approvalDate}.",
"viewInterestAccountFlyout.addButton.description": "Add {coin} to Rewards Account",
"viewInterestAccountFlyout.addButton.title": "Add {coin}",
"viewInterestAccountFlyout.withdrawButton.description": "Withdraw {coin} from Rewards Account",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const UkFooterBanner = ({ approvalDate }: { approvalDate?: string }) => {
<span>
<FormattedMessage
id='uk.footer.banner.title'
defaultMessage='This Financial Promotion has been approved by Helford Capital Partners LLP on {approvalDate}.'
defaultMessage='This Financial Promotion has been approved by Englebert Ltd on {approvalDate}.'
values={{ approvalDate }}
/>
</span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@ const Scene = ({ children }) => {
<Text color='grey600' size='14px' weight={500}>
Real-time data is obtained from multiple sources and may sometimes be delayed due
to system performance issues. Past performance is not a reliable indicator of
future results. Find out more about Staking and Rewards as well as the risks{' '}
future results. Find out more about various crypto assets and their risks{' '}
<Link
size='14px'
href='https://support.blockchain.com/hc/en-us/articles/10857163796380-Staking-and-Rewards-what-are-the-risks'
href='https://support.blockchain.com/hc/en-us/articles/10857167024156-Various-Cryptoassets-and-Their-Risks'
target='_blank'
style={{ textDecoration: 'underline' }}
>
Expand Down
10 changes: 6 additions & 4 deletions packages/blockchain-wallet-v4-frontend/src/scenes/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,8 @@ const App = ({
userDataId
}: Props) => {
const Loading = isAuthenticated ? WalletLoading : AuthLoading
const approvalDate = '4 March 2024'

// parse and log UTMs
useEffect(() => {
const utm = utmParser()
Expand Down Expand Up @@ -329,21 +331,21 @@ const App = ({
path='/airdrops'
component={Airdrops}
hasUkBanner
approvalDate='October 7 2023'
approvalDate={approvalDate}
/>
<WalletLayout path='/exchange' component={TheExchange} />
<WalletLayout
path='/home'
component={Home}
hasUkBanner
approvalDate='October 7 2023'
approvalDate={approvalDate}
/>
<WalletLayout
path='/earn'
component={Earn}
exact
hasUkBanner
approvalDate='October 7 2023'
approvalDate={approvalDate}
/>
<WalletLayout path='/earn/history' component={EarnHistory} />
{isActiveRewardsEnabled && (
Expand All @@ -360,7 +362,7 @@ const App = ({
path='/prices'
component={Prices}
hasUkBanner
approvalDate='October 7 2023'
approvalDate={approvalDate}
/>
<WalletLayout path='/tax-center' component={TaxCenter} />
<WalletLayout
Expand Down

0 comments on commit e72f300

Please sign in to comment.