Tried to clear errors mentioned in lint details

154:28  error    Trailing spaces not allowed     
 161:6   error    Unexpected tab character
This commit is contained in:
keikari 2021-07-16 23:33:59 +03:00 committed by jessopb
parent 299682a6dc
commit 1882e78d51

View file

@ -151,14 +151,14 @@ function WalletSendTip(props: Props) {
function setClaimTypeText() { function setClaimTypeText() {
if (claim.value_type === 'stream') { if (claim.value_type === 'stream') {
return __('Content'); return __('Content');
} else if (claim.value_type === 'channel') { } else if (claim.value_type === 'channel') {
return __('Channel'); return __('Channel');
} else if (claim.value_type === 'repost') { } else if (claim.value_type === 'repost') {
return __('Repost'); return __('Repost');
} else if (claim.value_type === 'collection') { } else if (claim.value_type === 'collection') {
return __('List'); return __('List');
} else { } else {
return __('Claim'); return __('Claim');
} }
} }