Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/web/features/profile/view/UserOverview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ export default function UserOverview({
<StyledIntro variant="h1">
<span>
{user.name}
{user.hasStrongVerification ? <StrongVerificationBadge /> : null}
{user.hasStrongVerification && <StrongVerificationBadge />}
Comment thread
tristanlabelle marked this conversation as resolved.
Outdated
</span>
</StyledIntro>
<StyledLink
Expand Down
2 changes: 2 additions & 0 deletions app/web/features/search/SeachResultUserCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { FlexboxProps, useMediaQuery } from "@mui/system";
import Avatar from "components/Avatar";
import { OpenInNewIcon } from "components/Icons";
import ProfileLink from "components/ProfileLink/ProfileLink";
import StrongVerificationBadge from "components/StrongVerificationBadge";
import StyledLink from "components/StyledLink";
import { useImpressionRef, useLogEvent } from "features/analytics/hooks";
import { useSearchAnalytics } from "features/analytics/searchAnalyticsContext";
Expand Down Expand Up @@ -291,6 +292,7 @@ const SearchResultUserCard = ({
}}
>
{user.name}
{user.hasStrongVerification && <StrongVerificationBadge />}
Comment thread
tristanlabelle marked this conversation as resolved.
Outdated
</Typography>
</ProfileLink>
</FlexRow>
Expand Down
Loading