Skip to content
This repository has been archived by the owner on May 13, 2024. It is now read-only.

Combines disabled text strings #227

Merged
merged 1 commit into from
Oct 23, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,6 @@ exports[`MainToggle tests basic tests matches the snapshot 1`] = `
>
MISSING: rewardsOffText1

<br />
<b>
MISSING: rewardsOffText2
</b>
Expand Down
3 changes: 1 addition & 2 deletions src/features/rewards/mainToggle/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,7 @@ export default class MainToggle extends React.PureComponent<Props, {}> {
? <StyledContent>
<StyleTitle>{getLocale('rewardsWhy')}</StyleTitle>
<StyleText>
{getLocale('rewardsOffText1')} <br/>
<b>{getLocale('rewardsOffText2')}</b>
{getLocale('rewardsOffText1')} <b>{getLocale('rewardsOffText2')}</b>
</StyleText>
<StyleTitle>{getLocale('rewardsOffText3')}</StyleTitle>
<StyleText>
Expand Down