Skip to content

Commit

Permalink
site: fix active link
Browse files Browse the repository at this point in the history
  • Loading branch information
luwes committed Dec 13, 2024
1 parent facd650 commit 9eabd44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/default-provider/app/sidebar-nav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export default function SidebarNav() {
<Link className={`link ${pathname === '/dash-source' ? 'active' : ''}`} href="/dash-source">DASH source<span>player only</span></Link>
</li>
<li>
<Link className={`link ${pathname === '/player-only' ? 'active' : ''}`} href="/mp4-source">MP4 source<span>player only</span></Link>
<Link className={`link ${pathname === '/mp4-source' ? 'active' : ''}`} href="/mp4-source">MP4 source<span>player only</span></Link>
</li>
<li>
<Link className={`link ${pathname === '/source-tag' ? 'active' : ''}`} href="/source-tag">Source tag<span>player only</span></Link>
Expand Down

0 comments on commit 9eabd44

Please sign in to comment.