diff --git a/src/components/react-hook-form/SearchFormField.stories.tsx b/src/components/react-hook-form/SearchFormField.stories.tsx
index fc439635..e069767f 100644
--- a/src/components/react-hook-form/SearchFormField.stories.tsx
+++ b/src/components/react-hook-form/SearchFormField.stories.tsx
@@ -8,13 +8,14 @@ import {
Title,
} from '@storybook/blocks'
import { action } from '@storybook/addon-actions'
+import { useForm } from 'react-hook-form'
import {
InternationalizationMessages,
Theme,
} from '../../../.storybook/components'
import { Section, SectionHeaderArea } from '../section'
import { SearchFormField } from './SearchFormField'
-import { FilterForm } from './FilterForm'
+import { Form } from './Form'
const meta = {
component: SearchFormField,
@@ -22,18 +23,20 @@ const meta = {
disabled: { type: 'boolean' },
},
decorators: [
- (Story) => (
-
- ),
+ (Story) => {
+ const form = useForm({
+ defaultValues: { search: '' },
+ })
+ return (
+
+ )
+ },
],
parameters: {
docs: {