Skip to content

Commit 6fd668e

Browse files
committed
fix: search dialog types
1 parent ccc074d commit 6fd668e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

app/provider.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
"use client"
22

3-
// eslint-disable-next-line import/no-extraneous-dependencies
43
import { Root } from "@radix-ui/react-dialog"
54
import DefaultSearchDialog, {
65
type DefaultSearchDialogProps
@@ -19,7 +18,7 @@ export function Provider({ children }: { readonly children: React.ReactNode }) {
1918
)
2019
}
2120

22-
function SearchDialog({ tag, api, ...props }: DefaultSearchDialogProps): React.ReactElement {
21+
function SearchDialog(props: DefaultSearchDialogProps): React.ReactElement {
2322
return (
2423
<Root>
2524
<DefaultSearchDialog {...props} />

0 commit comments

Comments
 (0)