Skip to content

Commit

Permalink
fix(help): use wallet support page link
Browse files Browse the repository at this point in the history
  • Loading branch information
schnogz committed May 16, 2022
1 parent 7ddee26 commit 3535586
Showing 1 changed file with 16 additions and 18 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import React from 'react'
import { FormattedMessage } from 'react-intl'
import { LinkContainer } from 'react-router-bootstrap'
import styled from 'styled-components'

import { Link, Text } from 'blockchain-info-components'
Expand All @@ -10,21 +9,20 @@ const HelpContainer = styled.div`
cursor: pointer;
`

const Help = () => {
return (
<HelpContainer>
<Link
color='grey400'
href='https://support.blockchain.com/'
size='14px'
target='_blank'
weight={500}
>
<Text color='grey400' size='16px' weight={500}>
<FormattedMessage id='scenes.login.need.help' defaultMessage='Need Help?' />
</Text>
</Link>
</HelpContainer>
)
}
const Help = () => (
<HelpContainer>
<Link
color='grey400'
href='https://support.blockchain.com/hc/en-us/categories/4416659837460-Wallet'
size='14px'
target='_blank'
weight={500}
>
<Text color='grey400' size='16px' weight={500}>
<FormattedMessage id='scenes.login.need.help' defaultMessage='Need Help?' />
</Text>
</Link>
</HelpContainer>
)

export default Help

0 comments on commit 3535586

Please sign in to comment.