Skip to content

Commit

Permalink
adjust copy
Browse files Browse the repository at this point in the history
  • Loading branch information
Sean Yesmunt committed Nov 14, 2018
1 parent 863b2e3 commit 39fa8e7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/renderer/component/fileDetails/view.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class FileDetails extends PureComponent<Props> {

clickCommentButton();
Lbryio.call('user_tag', 'edit', { add: 'comments-waitlist' });
showSnackBar(__('Thanks! This feature is so beta, all we had time for was this button.'));
showSnackBar(__('Thanks! Comments are coming soon(ish).'));
}

render() {
Expand Down Expand Up @@ -106,7 +106,7 @@ class FileDetails extends PureComponent<Props> {
data-id="add-comment"
disabled={hasClickedComment}
button="primary"
label="Comment"
label={__('Want to comment?')}
onClick={this.handleCommentClick}
/>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/store.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ const appFilter = createFilter('app', ['hasClickedComment']);
const walletFilter = createFilter('wallet', ['receiveAddress']);

const persistOptions = {
whitelist: ['subscriptions', 'publish', 'wallet', 'content', 'fileInfo'],
whitelist: ['subscriptions', 'publish', 'wallet', 'content', 'fileInfo', 'app'],
// Order is important. Needs to be compressed last or other transforms can't
// read the data
transforms: [
Expand Down

0 comments on commit 39fa8e7

Please sign in to comment.