Skip to content

Commit 97893f3

Browse files
chore: Fixed links to OSS friends (#1006)
The links on [https://docs.tolgee.io/oss-friends](https://docs.tolgee.io/oss-friends) were leading to broken pages with the URL like: https://docs.tolgee.io/https://activepieces.com Now it opens the websites properly P.S. I am not sure if the "rel" attribute in the links should be what it is, as I am not aware of what conditions the links are kept there in the docs. Maybe they need to be dofollow?
1 parent 62abe32 commit 97893f3

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/pages/oss-friends/index.tsx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,14 @@ export default function OssFriends() {
2929
.filter(({ name }) => name !== 'Tolgee')
3030
.map(({ name, description, href }, i) => (
3131
<div key={i} className="oss-friends--friend">
32-
<Link to={href}>
32+
<a href={href} target="_blank" rel="noopener noreferrer">
3333
<Heading as="h3">{name}</Heading>
34-
</Link>
34+
</a>
3535
<div>{description}</div>
3636
<div className="oss-friends--friend-learn-more">
37-
<Link to={href}>Learn more</Link>
37+
<a href={href} target="_blank" rel="noopener noreferrer">
38+
Learn more
39+
</a>
3840
</div>
3941
</div>
4042
))}

0 commit comments

Comments
 (0)