Skip to content

Commit

Permalink
Merge pull request #4811 from Giveth/verification--badge-fix
Browse files Browse the repository at this point in the history
Release FIX: on verification status badge
  • Loading branch information
mateodaza authored Oct 2, 2024
2 parents 30c10dc + 759740e commit 0219db6
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/components/VerificationBadge.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@ const VerificationBadge: FC<IProps> = ({
}) => {
const verStatus = isGivbackEligible
? EVerificationStatus.VERIFIED
: verificationStatus !== EVerificationStatus.VERIFIED
? verificationStatus
: '';
: verificationStatus;

let label, badgeStatus;
switch (verStatus) {
Expand Down

0 comments on commit 0219db6

Please sign in to comment.