diff --git a/src/entities/support/model/types.ts b/src/entities/support/model/types.ts index 8bd22da..808277f 100644 --- a/src/entities/support/model/types.ts +++ b/src/entities/support/model/types.ts @@ -61,7 +61,7 @@ export interface QnaSaveResponse { export interface NoticeListParams extends SupportParams { informCl?: InformCl | string; searchCl?: SearchCl | null; - searchValue?: string; + searchKeyword?: string; page?: DefaultRequestPagination; }; export interface NoticeItem { diff --git a/src/pages/support/faq/list-page.tsx b/src/pages/support/faq/list-page.tsx index d4921c9..8c5906f 100644 --- a/src/pages/support/faq/list-page.tsx +++ b/src/pages/support/faq/list-page.tsx @@ -137,7 +137,7 @@ export const FaqListPage = () => {
-
+
{ }} />
-
+
) => setSearchValue(e.target.value) } + value={ searchKeyword } + onChange={ (e: ChangeEvent) => setSearchKeyword(e.target.value) } onKeyDown={ (e: React.KeyboardEvent) => { if (e.key === 'Enter' && !e.nativeEvent.isComposing) { onClickToAction(); @@ -165,7 +165,6 @@ export const NoticeListPage = () => { -