We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ccc074d commit 6fd668eCopy full SHA for 6fd668e
app/provider.tsx
@@ -1,6 +1,5 @@
1
"use client"
2
3
-// eslint-disable-next-line import/no-extraneous-dependencies
4
import { Root } from "@radix-ui/react-dialog"
5
import DefaultSearchDialog, {
6
type DefaultSearchDialogProps
@@ -19,7 +18,7 @@ export function Provider({ children }: { readonly children: React.ReactNode }) {
19
18
)
20
}
21
22
-function SearchDialog({ tag, api, ...props }: DefaultSearchDialogProps): React.ReactElement {
+function SearchDialog(props: DefaultSearchDialogProps): React.ReactElement {
23
return (
24
<Root>
25
<DefaultSearchDialog {...props} />
0 commit comments