Skip to content

Commit 185c3af

Browse files
committed
Fix lint.
1 parent ca6929e commit 185c3af

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ First, run the development server:
77
```bash
88
bun dev
99
```
10+
1011
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
1112

1213
You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.

components/docs/sidebar/DocsSearch.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
"use client";
22

33
import SearchBox from "@/components/docs/search/SearchBox";
4-
import { DocSearchProps } from "@/components/docs/search/types";
5-
64
const DocsSearch = ({
75
className = "",
86
placeholder = "Search something...",
97
minQueryLength = 2,
108
debounceTime = 300,
11-
}: DocSearchProps) => {
9+
}) => {
1210
return (
1311
<SearchBox
1412
className={className}

0 commit comments

Comments
 (0)