Update view.jsx

This commit is contained in:
Thomas Zarebczan 2021-08-19 16:32:03 -04:00 committed by GitHub
parent 6fe1923ef5
commit 51576a827d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -176,8 +176,8 @@ const ClaimPreview = forwardRef<any, {}>((props: Props, ref: any) => {
return (
<span className="claim-preview__channel-sub-count">
{channelSubCount === 1
? __('%channelSubCount% Follower', { formattedSubCount })
: __('%channelSubCount% Followers', { formattedSubCount })}
? __('%formattedSubCount% Follower', { formattedSubCount })
: __('%formattedSubCount% Followers', { formattedSubCount })}
</span>
);
}, [channelSubCount]);