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: ,
}}
>
You're not following any tags. Add tags above or smash that %customize% button!
-
-
+
);
- 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={}
+ />
);
}
diff --git a/ui/modal/modalRemoveFile/view.jsx b/ui/modal/modalRemoveFile/view.jsx
index a172b7ef9..2b5e70db5 100644
--- a/ui/modal/modalRemoveFile/view.jsx
+++ b/ui/modal/modalRemoveFile/view.jsx
@@ -1,9 +1,11 @@
// @flow
import React from 'react';
import { Modal } from 'modal/modal';
-import { Form, FormField } from 'component/common/form';
+import { FormField } from 'component/common/form';
import Button from 'component/button';
import usePersistedState from 'effects/use-persisted-state';
+import Card from 'component/common/card';
+import I18nMessage from 'component/i18nMessage';
type Props = {
uri: string,
@@ -23,47 +25,64 @@ function ModalRemoveFile(props: Props) {
const [abandonChecked, setAbandonChecked] = usePersistedState('modal-remove-file:abandon', true);
return (
-
-
-
- {__("Are you sure you'd like to remove")} {`"${title}"`} {__('from LBRY?')}
-
-
-