Skip to content

Commit 72913aa

Browse files
committed
lint
1 parent 161692b commit 72913aa

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

apps/portal/src/app/Header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ export function Header() {
285285
>
286286
<NavLink href={link.href} name={link.name} />
287287
{pathname.includes(link.href) && (
288-
<div className="bg-violet-700 h-1 left-0.5 right-0.5 rounded-full absolute -bottom-0.5" />
288+
<div className="bg-violet-700 h-1 inset-x-0.5 rounded-full absolute -bottom-0.5" />
289289
)}
290290
</li>
291291
);

apps/portal/src/components/Document/List.module.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.unorderedList,
22
.orderedList {
3-
@apply pl-5 leading-7 list-none mb-6
3+
@apply pl-5 leading-7 list-none mb-6;
44
}
55

66
.unorderedList > li {

apps/portal/src/components/Document/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// export { CustomAccordion } from "../others/CustomAccordion";
22

3+
export { Badge } from "../ui/badge";
34
// export { Table } from "./Table";
45
export { Tabs, TabsContent, TabsList, TabsTrigger } from "../ui/tabs";
5-
export { Badge } from "../ui/badge";
66
export { AuthList } from "./AuthList";
77
export { Breadcrumb } from "./Breadcrumb";
88
export { Callout } from "./Callout";

apps/portal/src/components/others/TableOfContents.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
"use client";
22

3+
import { BookOpenTextIcon } from "lucide-react";
34
import Link from "next/link";
45
import { usePathname } from "next/navigation";
56
import { useEffect, useRef, useState } from "react";
67
import { cn } from "@/lib/utils";
7-
import { BookIcon, BookOpenTextIcon } from "lucide-react";
88

99
/**
1010
* Automatically query all the heading anchors inside the <main> and creates a table of contents

0 commit comments

Comments
 (0)