Skip to content

Commit

Permalink
Fix - Newsletters link in a new tab
Browse files Browse the repository at this point in the history
  • Loading branch information
amankumarrr committed Dec 8, 2023
1 parent 10a17f4 commit 8b2c569
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/blocks/newslettersTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export const NewslettersTable: React.FC<{ data: { headerText: string } }> = ({
{newsletters.map(({ file, month, description }) => (
<tr key={file} className="mx-4 bg-gray-50">
<td className="rounded-l px-3 py-1">
<CustomLink href={removeTinaFromUrl(file)}>
<CustomLink href={removeTinaFromUrl(file)} target="_blank">
{transformIntToMonth(month)}
</CustomLink>
</td>
Expand Down

0 comments on commit 8b2c569

Please sign in to comment.