diff --git a/src/ui/page/channel/view.jsx b/src/ui/page/channel/view.jsx
index 30550e018..edfcb0935 100644
--- a/src/ui/page/channel/view.jsx
+++ b/src/ui/page/channel/view.jsx
@@ -20,6 +20,7 @@ import * as MODALS from 'constants/modal_types';
import { Form, FormField } from 'component/common/form';
import ClaimPreview from 'component/claimPreview';
import Icon from 'component/common/icon';
+import HelpLink from 'component/common/help-link';
const PAGE_VIEW_QUERY = `view`;
const ABOUT_PAGE = `about`;
@@ -190,6 +191,7 @@ function ChannelPage(props: Props) {
{subCount} {subCount !== 1 ? __('Subscribers') : __('Subscriber')}
+
diff --git a/src/ui/page/file/view.jsx b/src/ui/page/file/view.jsx
index 277fd1911..3fe2d8aee 100644
--- a/src/ui/page/file/view.jsx
+++ b/src/ui/page/file/view.jsx
@@ -18,6 +18,7 @@ import CommentsList from 'component/commentsList';
import CommentCreate from 'component/commentCreate';
import ClaimUri from 'component/claimUri';
import ClaimPreview from 'component/claimPreview';
+import HelpLink from 'component/common/help-link';
export const FILE_WRAPPER_CLASS = 'grid-area--content';
@@ -161,6 +162,7 @@ class FilePage extends React.Component {
{viewCount} {viewCount !== 1 ? __('Views') : __('View')}
+
diff --git a/src/ui/page/settings/view.jsx b/src/ui/page/settings/view.jsx
index 9848d5820..5a8351096 100644
--- a/src/ui/page/settings/view.jsx
+++ b/src/ui/page/settings/view.jsx
@@ -511,6 +511,7 @@ class SettingsPage extends React.PureComponent {
{/* @if TARGET='app' */}
this.onChangeEncryptWallet()}
@@ -518,9 +519,19 @@ class SettingsPage extends React.PureComponent {
label={__('Encrypt my wallet with a custom password')}
helper={
- {__('Secure your local wallet data with a custom password.')}{' '}
+
+ ),
+ }}
+ >
+ Wallet encryption is currently unavailable until it's supported for synced accounts. It will
+ be added back soon. %learn_more%
+
+ {/* {__('Secure your local wallet data with a custom password.')}{' '}
{__('Lost passwords cannot be recovered.')}
- .
+ . */}
}
/>
diff --git a/src/ui/redux/actions/app.js b/src/ui/redux/actions/app.js
index 349e31da2..c6cd36d2c 100644
--- a/src/ui/redux/actions/app.js
+++ b/src/ui/redux/actions/app.js
@@ -467,6 +467,10 @@ export function doSignIn() {
// For existing users, check if they've synced before, or have 0 balance
if (syncEnabled && (syncHash || balance === 0)) {
dispatch(doGetSync());
+
+ setInterval(() => {
+ dispatch(doGetSync());
+ }, 1000 * 60 * 5);
}
// @endif
diff --git a/src/ui/scss/component/_icon.scss b/src/ui/scss/component/_icon.scss
index 7b973b7a0..8f54c0214 100644
--- a/src/ui/scss/component/_icon.scss
+++ b/src/ui/scss/component/_icon.scss
@@ -20,3 +20,11 @@
background-color: var(--color-card-actions--dark);
}
}
+
+.icon--help {
+ margin-left: var(--spacing-small);
+ bottom: -0.3rem;
+ opacity: 0.7;
+ height: 1rem;
+ width: 1rem;
+}
diff --git a/static/app-strings.json b/static/app-strings.json
index 887025ecd..a78205d5a 100644
--- a/static/app-strings.json
+++ b/static/app-strings.json
@@ -818,5 +818,9 @@
"You aren’t blocking any channels": "You aren’t blocking any channels",
"When you block a channel, all content from that channel will be hidden.": "When you block a channel, all content from that channel will be hidden.",
"dfsdfsdf": "dfsdfsdf",
- "Light": "Light"
+ "Light": "Light",
+ "Wallet encryption is currently unavailable until it's supported for synced accounts. It will be added back soon. %learn_more%": "Wallet encryption is currently unavailable until it's supported for synced accounts. It will be added back soon. %learn_more%",
+ "... in your publishes": "... in your publishes",
+ "... in your supports": "... in your supports",
+ "Earned and bound in tips": "Earned and bound in tips"
}
\ No newline at end of file