Skip to content

Commit 8ee7b5d

Browse files
committed
lint
1 parent 161692b commit 8ee7b5d

File tree

5 files changed

+4
-29
lines changed

5 files changed

+4
-29
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/Cards/ConnectCard.tsx

Lines changed: 0 additions & 24 deletions
This file was deleted.

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 & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
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";
99
export { ArticleCard, ArticleIconCard } from "./Cards/ArticleCard";
10-
export { ConnectCard } from "./Cards/ConnectCard";
1110
export { GithubTemplateCard } from "./Cards/GithubTemplateCard";
1211
export { CodeBlock } from "./Code";
1312
export { Details } from "./Details";

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)