diff --git a/static/app-strings.json b/static/app-strings.json index 61bdbd0bd..b970e5233 100644 --- a/static/app-strings.json +++ b/static/app-strings.json @@ -2314,5 +2314,6 @@ "Apply": "Apply", "24-hour clock": "24-hour clock", "Disable background": "Disable background", + "Odysee Connect --[Section in Help Page]--": "Odysee Connect", "--end--": "--end--" } diff --git a/ui/component/rewardAuthIntro/index.js b/ui/component/rewardAuthIntro/index.js deleted file mode 100644 index 014a436d1..000000000 --- a/ui/component/rewardAuthIntro/index.js +++ /dev/null @@ -1,9 +0,0 @@ -import { connect } from 'react-redux'; -import { selectUnclaimedRewardValue } from 'redux/selectors/rewards'; -import RewardAuthIntro from './view'; - -const select = state => ({ - totalRewardValue: selectUnclaimedRewardValue(state), -}); - -export default connect(select, null)(RewardAuthIntro); diff --git a/ui/component/rewardAuthIntro/view.jsx b/ui/component/rewardAuthIntro/view.jsx deleted file mode 100644 index 9d069a447..000000000 --- a/ui/component/rewardAuthIntro/view.jsx +++ /dev/null @@ -1,46 +0,0 @@ -// @flow -import { SITE_NAME } from 'config'; -import * as PAGES from 'constants/pages'; -import React from 'react'; -import CreditAmount from 'component/common/credit-amount'; -import Button from 'component/button'; -import Card from 'component/common/card'; -import I18nMessage from 'component/i18nMessage'; - -type Props = { - balance: number, - totalRewardValue: number, - title?: string, -}; - -function RewardAuthIntro(props: Props) { - const { totalRewardValue, title } = props; - const totalRewardRounded = Math.floor(totalRewardValue / 10) * 10; - - return ( - , - site_name: SITE_NAME, - }} - > - A %site_name% account allows you to earn more than %credit_amount% in rewards, backup your data, and get - content and security updates. - - } - actions={ -