We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53e3d48 commit fdae6b6Copy full SHA for fdae6b6
src/features/feed/components/feedItems/AdvFeedItem.tsx
@@ -23,11 +23,9 @@ export const AdvFeedItem = ({ className }: BaseItemPropsType<AdFeedItemData>) =>
23
{adMeta && (
24
<>
25
{adMeta.company && adMeta.companyTagline && (
26
- <div className="rowTitle">
27
- <span className="subTitle">
28
- {[adMeta.company, adMeta.companyTagline].filter(Boolean).join(' - ')}
29
- </span>
30
- </div>
+ <a className="rowTitle" href={adMeta.callToAction}>
+ {[adMeta.company, adMeta.companyTagline].filter(Boolean).join(' - ')}
+ </a>
31
)}
32
<div className="rowDetails">
33
<span className="rowItem verticalAligned">
0 commit comments