update link on help page
This commit is contained in:
parent
a17610d365
commit
feb7fb8e05
1 changed files with 7 additions and 7 deletions
|
@ -1,6 +1,6 @@
|
||||||
// @TODO: Customize advice based on OS
|
|
||||||
// @flow
|
// @flow
|
||||||
import * as icons from 'constants/icons';
|
import * as ICONS from 'constants/icons';
|
||||||
|
import * as PAGES from 'constants/pages';
|
||||||
import * as React from 'react';
|
import * as React from 'react';
|
||||||
// @if TARGET='app'
|
// @if TARGET='app'
|
||||||
import { shell } from 'electron';
|
import { shell } from 'electron';
|
||||||
|
@ -135,13 +135,13 @@ class HelpPage extends React.PureComponent<Props, State> {
|
||||||
<Button
|
<Button
|
||||||
href="https://lbry.com/faq/lbry-basics"
|
href="https://lbry.com/faq/lbry-basics"
|
||||||
label={__('Read the App Basics FAQ')}
|
label={__('Read the App Basics FAQ')}
|
||||||
icon={icons.HELP}
|
icon={ICONS.HELP}
|
||||||
button="secondary"
|
button="secondary"
|
||||||
/>
|
/>
|
||||||
<Button
|
<Button
|
||||||
href="https://lbry.com/faq"
|
href="https://lbry.com/faq"
|
||||||
label={__('View all LBRY FAQs')}
|
label={__('View all LBRY FAQs')}
|
||||||
icon={icons.HELP}
|
icon={ICONS.HELP}
|
||||||
button="secondary"
|
button="secondary"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
@ -158,8 +158,8 @@ class HelpPage extends React.PureComponent<Props, State> {
|
||||||
}
|
}
|
||||||
actions={
|
actions={
|
||||||
<div className="section__actions">
|
<div className="section__actions">
|
||||||
<Button button="secondary" label={__('Join Our Chat')} icon={icons.CHAT} href="https://chat.lbry.com" />
|
<Button button="secondary" label={__('Join Our Chat')} icon={ICONS.CHAT} href="https://chat.lbry.com" />
|
||||||
<Button button="secondary" label={__('Email Us')} icon={icons.WEB} href="mailto:help@lbry.com" />
|
<Button button="secondary" label={__('Email Us')} icon={ICONS.WEB} href="mailto:help@lbry.com" />
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
|
@ -240,7 +240,7 @@ class HelpPage extends React.PureComponent<Props, State> {
|
||||||
{user.primary_email}{' '}
|
{user.primary_email}{' '}
|
||||||
<Button
|
<Button
|
||||||
button="link"
|
button="link"
|
||||||
href={`https://lbry.com/list/edit/${accessToken}`}
|
navigate={`/$/${PAGES.SETTINGS_NOTIFICATIONS}`}
|
||||||
label={__('Update mailing preferences')}
|
label={__('Update mailing preferences')}
|
||||||
/>
|
/>
|
||||||
</React.Fragment>
|
</React.Fragment>
|
||||||
|
|
Loading…
Add table
Reference in a new issue