diff --git a/package.json b/package.json
index c975e10e3..95643e578 100644
--- a/package.json
+++ b/package.json
@@ -115,7 +115,7 @@
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.7.0",
- "flow-bin": "^0.69.0",
+ "flow-bin": "^0.89.0",
"flow-typed": "^2.3.0",
"husky": "^0.14.3",
"i18n-extract": "^0.5.1",
diff --git a/src/renderer/component/categoryList/view.jsx b/src/renderer/component/categoryList/view.jsx
index 3e87fb492..9583eb912 100644
--- a/src/renderer/component/categoryList/view.jsx
+++ b/src/renderer/component/categoryList/view.jsx
@@ -1,12 +1,13 @@
// @flow
import type { Claim } from 'types/claim';
import * as ICONS from 'constants/icons';
-import React, { PureComponent } from 'react';
+import React, { PureComponent, createRef } from 'react';
import { normalizeURI } from 'lbry-redux';
import ToolTip from 'component/common/tooltip';
import FileCard from 'component/fileCard';
import Button from 'component/button';
import SubscribeButton from 'component/subscribeButton';
+import throttle from 'util/throttle';
type Props = {
category: string,
@@ -33,12 +34,14 @@ class CategoryList extends PureComponent
+
{user
? __('Your support has been added. You will be notified when comments are available.')
: __('Your support has been added. Comments are coming soon.')}
diff --git a/src/renderer/component/publishForm/view.jsx b/src/renderer/component/publishForm/view.jsx
index 87b71b29c..d04baedc2 100644
--- a/src/renderer/component/publishForm/view.jsx
+++ b/src/renderer/component/publishForm/view.jsx
@@ -292,9 +292,9 @@ class PublishForm extends React.PureComponent
- {isStillEditing ? __('Editing a claim') : __('What are you publishing?')}{' '}
+ {isStillEditing
+ ? __('You are currently editing a claim.')
+ : __('What are you publishing?')}{' '}
{__('Read our')}{' '}
{' '}
{__('to learn more.')}
@@ -370,13 +372,14 @@ class PublishForm extends React.PureComponent
- {__("If you don't choose a file, the file from your existing claim")}
- {` "${name}" `}
- {__('will be used.')}
-
+ {__("If you don't choose a file, the file from your existing claim")}
+ {` "${name}" `}
+ {__('will be used.')}
+
{accessToken}
-{accessToken}
+