{
closeModal();
}}
>
- {__(`Your %publishMessage% published to LBRY.`, { publishMessage })}
+
+ {__(`Your %publishMessage% pending on LBRY. It will take a few minutes to appear for other users.`, {
+ publishMessage,
+ })}
+
- {__(
- `The ${publishType} will take a few minutes to appear for other LBRY users. Until then it will be listed as "pending" under your published files.`
+ {filePath && !IS_WEB && (
+
+ {__(
+ `Upload will continue in the background, please do not shut down immediately. Leaving the app running helps the network, thank you!`
+ )}{' '}
+
+
)}
diff --git a/src/ui/page/transactionHistory/index.js b/src/ui/page/transactionHistory/index.js
index 19ca107cb..1c18cdd00 100644
--- a/src/ui/page/transactionHistory/index.js
+++ b/src/ui/page/transactionHistory/index.js
@@ -1,10 +1,5 @@
import { connect } from 'react-redux';
-import {
- doFetchTransactions,
- doFetchClaimListMine,
- makeSelectFilteredTransactionsForPage,
- selectFilteredTransactionCount,
-} from 'lbry-redux';
+import { doFetchTransactions, makeSelectFilteredTransactionsForPage, selectFilteredTransactionCount } from 'lbry-redux';
import { withRouter } from 'react-router';
import TransactionHistoryPage from './view';
@@ -21,8 +16,7 @@ const select = (state, props) => {
};
const perform = dispatch => ({
- fetchTransactions: () => dispatch(doFetchTransactions()),
- fetchMyClaims: () => dispatch(doFetchClaimListMine()),
+ fetchTransactions: (page, pageSize) => dispatch(doFetchTransactions(page, pageSize)),
});
export default withRouter(
diff --git a/src/ui/page/transactionHistory/view.jsx b/src/ui/page/transactionHistory/view.jsx
index aa7ae32ea..27d64bf18 100644
--- a/src/ui/page/transactionHistory/view.jsx
+++ b/src/ui/page/transactionHistory/view.jsx
@@ -4,8 +4,7 @@ import TransactionList from 'component/transactionList';
import Page from 'component/page';
type Props = {
- fetchMyClaims: () => void,
- fetchTransactions: () => void,
+ fetchTransactions: (page, pageSize) => void,
fetchingTransactions: boolean,
filteredTransactionPage: Array<{}>,
filteredTransactionsCount: number,
@@ -13,10 +12,9 @@ type Props = {
class TransactionHistoryPage extends React.PureComponent