diff --git a/ui/component/claimListDiscover/view.jsx b/ui/component/claimListDiscover/view.jsx index a9d2836c1..0123dcfc4 100644 --- a/ui/component/claimListDiscover/view.jsx +++ b/ui/component/claimListDiscover/view.jsx @@ -175,25 +175,20 @@ function ClaimListDiscover(props: Props) { ); const noTags = ( -
-

+

, + customize:

+

); - const noFollowing = (personalSort === SEARCH_SORT_YOU && noTags) || (personalSort === SEARCH_SORT_CHANNELS && noChannels); - const emptyState = !loading && !hasContent ? noFollowing : noResults; + const noFollowing = + (personalSort === SEARCH_SORT_YOU && noTags) || (personalSort === SEARCH_SORT_CHANNELS && noChannels); + const emptyState = !loading && !hasContent ? noFollowing : noResults; function getSearch() { let search = `?`; diff --git a/ui/modal/modalFirstReward/view.jsx b/ui/modal/modalFirstReward/view.jsx index 4969b9b38..0737e2cca 100644 --- a/ui/modal/modalFirstReward/view.jsx +++ b/ui/modal/modalFirstReward/view.jsx @@ -1,6 +1,8 @@ // @flow import React from 'react'; import { Modal } from 'modal/modal'; +import Card from 'component/common/card'; +import Button from 'component/button'; type Props = { closeModal: () => void, @@ -11,21 +13,23 @@ class ModalFirstReward extends React.PureComponent { const { closeModal } = this.props; return ( - -

{__('You just earned your first reward!')}

-

{__("This reward will show in your Wallet in the top right momentarily (if it hasn't already).")}

-

- {__( - 'These credits are used to compensate creators, to publish your own content, and to have say in how the network works.' - )} -

-

{__('No need to understand it all just yet! Try watching or publishing something next.')}

+ + +

{__("This reward will show in your Wallet in the top right momentarily (if it hasn't already).")}

+

+ {__( + 'These credits are used to compensate creators, to publish your own content, and to have say in how the network works.' + )} +

+

{__('No need to understand it all just yet! Try watching or publishing something next.')}

+ + } + actions={