Skip to content

Commit

Permalink
Merge pull request #1186 from brave/tip-unverified
Browse files Browse the repository at this point in the history
Removes image for unverified from tip table
  • Loading branch information
NejcZdovc authored Dec 23, 2018
2 parents bd5796b + c1e10ae commit 929bdb9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ class DonationBox extends React.Component<Props, State> {
if (tipsList) {
tips = tipsList.map((item: Rewards.Publisher) => {
let faviconUrl = `chrome://favicon/size/48@1x/${item.url}`
if (item.favIcon) {
if (item.favIcon && item.verified) {
faviconUrl = `chrome://favicon/size/48@1x/${item.favIcon}`
}

Expand Down

0 comments on commit 929bdb9

Please sign in to comment.