From 5a5aa79f2ed29cd71280b5b7dcf6cc89e2db2d36 Mon Sep 17 00:00:00 2001 From: "focp212@naver.com" Date: Wed, 22 Oct 2025 19:09:34 +0900 Subject: [PATCH] =?UTF-8?q?=EA=B3=B5=EC=A7=80=EC=82=AC=ED=95=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/entities/support/model/types.ts | 2 +- src/pages/support/faq/list-page.tsx | 11 ++++++----- src/pages/support/notice/list-page.tsx | 11 +++++------ 3 files changed, 12 insertions(+), 12 deletions(-) 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 = () => { -