Skip to content

Commit dd408a0

Browse files
committed
fix: update link to open in new tab
1 parent 23db1de commit dd408a0

File tree

1 file changed

+1
-1
lines changed
  • src/features/dashboard/update-app/AppUpdateForm

1 file changed

+1
-1
lines changed

src/features/dashboard/update-app/AppUpdateForm/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const Explanations: React.FC<{ children: React.ReactNode }> = ({ children }) =>
2525

2626
const UnderlinedLink: React.FC<{ text: string; linkTo: string }> = ({ text, linkTo }) => {
2727
return (
28-
<a className='underlined_link' href={linkTo}>
28+
<a className='underlined_link' href={linkTo} target='_blank' rel='noreferrer'>
2929
{text}
3030
</a>
3131
);

0 commit comments

Comments
 (0)