Skip to content

Commit

Permalink
reordered nav (#92)
Browse files Browse the repository at this point in the history
Co-authored-by: Francis Thibault <[email protected]>
  • Loading branch information
fraincs and Francis Thibault authored Nov 10, 2023
1 parent c00c3df commit ee7872e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/docs/components/ui/sidebar/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ interface SidebarProps {

const Sidebar = ({ data, isOpen, onClose }: SidebarProps) => {
const sidebarRef = useRef<HTMLDivElement>(null);
const links = getPageLinks(data, { order: ["getting-started", "core", "semantic"] });
const links = getPageLinks(data, { order: ["getting-started", "semantic", "core"] });
const pathName = usePathname();

useEffect(() => {
Expand Down

0 comments on commit ee7872e

Please sign in to comment.