Skip to content

Commit

Permalink
make link open new tab
Browse files Browse the repository at this point in the history
  • Loading branch information
jxmoose committed Mar 17, 2024
1 parent 60bd085 commit beeff58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/userComponents/NewsDisplay/NewsDisplay.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default function NewsDisplay({
const date = moment(createdAt).format('MMMM Do, YYYY');
return (
<li key={id}>
<a href={contentLink}>
<a href={contentLink} target="_blank" rel="noreferrer noopener">
<div className="flex flex-col items-start gap-3 mb-6 mt-6 font-[Lato]">
<div className="flex m-auto flex-row justify-between w-full">
<p className="text-night text-[16px] not-italic font-medium leading-[normal] w-[90%]">
Expand Down

0 comments on commit beeff58

Please sign in to comment.