Skip to content

Commit

Permalink
Merge pull request #3856 from qburst/fixes/fix-absolute-path
Browse files Browse the repository at this point in the history
fix: absolute path issue in link for consistent URLs
  • Loading branch information
khushal87 committed Dec 27, 2023
2 parents 43d1587 + 553791d commit da3a34e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions website/docs/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import Admonition from '@theme/Admonition';
<div class="col col--6">
<Link
class="card "
to="docs/installation#using-expo"
to="/docs/installation#using-expo"
style={{ height: '100%' }}
>
<div class="card__body position-relative">
Expand All @@ -42,7 +42,7 @@ import Admonition from '@theme/Admonition';
</Link>
</div>
<div class="col col--6">
<Link class="card " to="docs/installation" style={{ height: '100%' }}>
<Link class="card " to="/docs/installation" style={{ height: '100%' }}>
<div class="card__body position-relative">
<h4>
React Native CLI <SiReact class="card__icon" />
Expand All @@ -54,7 +54,7 @@ import Admonition from '@theme/Admonition';
<div class="col col--6">
<Link
class="card "
to="docs/installation#using-on-web"
to="/docs/installation#using-on-web"
style={{ height: '100%' }}
>
<div class="card__body position-relative">
Expand Down

0 comments on commit da3a34e

Please sign in to comment.