diff --git a/static/app-strings.json b/static/app-strings.json
index 74682cbd1..881b687b2 100644
--- a/static/app-strings.json
+++ b/static/app-strings.json
@@ -742,7 +742,7 @@
"There was an error reposting this claim. Please try again later.": "There was an error reposting this claim. Please try again later.",
"Claim ID": "Claim ID",
"Official YouTube Creator": "Official YouTube Creator",
- "Official YouTube Creator - Last checked %time_ago%": "Official YouTube Creator - Last checked %time_ago%",
+ "Last checked %time_ago%": "Last checked %time_ago%",
"Install Now": "Install Now",
"Invite Link": "Invite Link",
"Earn %lbc% for inviting subscribers, followers, fans, friends, etc. to join and follow you on %SITE_NAME%. You can use invites just like affiliate links.": "Earn %lbc% for inviting subscribers, followers, fans, friends, etc. to join and follow you on %SITE_NAME%. You can use invites just like affiliate links.",
diff --git a/ui/component/channelAbout/view.jsx b/ui/component/channelAbout/view.jsx
index 956222209..b9537d661 100644
--- a/ui/component/channelAbout/view.jsx
+++ b/ui/component/channelAbout/view.jsx
@@ -7,6 +7,7 @@ import CreditAmount from 'component/common/credit-amount';
import Button from 'component/button';
import * as PAGES from 'constants/pages';
import DateTime from 'component/dateTime';
+import YoutubeBadge from 'component/youtubeBadge';
type Props = {
claim: ChannelClaim,
@@ -27,6 +28,7 @@ const formatEmail = (email: string) => {
function ChannelAbout(props: Props) {
const { claim, uri, description, email, website } = props;
+ const claimId = claim && claim.claim_id;
return (
@@ -97,6 +99,8 @@ function ChannelAbout(props: Props) {
/>
)}