Skip to content

Commit f32a71a

Browse files
committed
Fix eslint.
1 parent 99e4148 commit f32a71a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

app/docs/[...slug]/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ import { EditOnGitHub } from "@/components/docs/content/EditOnGitHub";
1313
import { ErrorBoundary } from "@/components/docs/content/ErrorBoundary";
1414
import { ReadingTime } from "@/components/docs/content/ReadingTime";
1515
import { ShortLink } from "@/components/docs/content/ShortLink";
16-
import { docsStructure } from "@/lib/sidebar-structure";
1716
import { components, mdxOptions } from "@/components/mdx/mdx-components";
17+
import { docsStructure } from "@/lib/sidebar-structure";
1818

1919
interface DocMeta {
2020
title: string;

components/docs/sidebar/DocSidebar.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@ import { Menu, X } from "lucide-react";
44
import { usePathname } from "next/navigation";
55
import React, { useEffect } from "react";
66

7+
import { docsStructure } from "@/lib/sidebar-structure";
78
import { cn } from "@/lib/utils";
89

9-
import { docsStructure } from "../../../lib/sidebar-structure";
10+
1011
import SidebarItem from "./SidebarItem";
1112
import { DocSidebarProps } from "./types";
1213
import { useMobileSidebar } from './useMobileSidebar';

0 commit comments

Comments
 (0)