Skip to content
Merged
Changes from 1 commit
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
5 changes: 5 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,10 @@ const SearchResultUserCard = ({
}}
>
{user.name}
{"hasStrongVerification" in user &&
user.hasStrongVerification ? (
<StrongVerificationBadge />
) : null}
Comment thread
tristanlabelle marked this conversation as resolved.
Outdated
</Typography>
</ProfileLink>
</FlexRow>
Expand Down
Loading