From 5f0092edf2413651970f42305e1f9ec3b71be5b6 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Sat, 22 Mar 2025 13:17:16 +0000 Subject: [PATCH] Limit title suggestions per category Limit the number of title suggestions stored per category to 10. --- src/utils/userTitlePreferences.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/userTitlePreferences.ts b/src/utils/userTitlePreferences.ts index 6932e30..75b8c2b 100644 --- a/src/utils/userTitlePreferences.ts +++ b/src/utils/userTitlePreferences.ts @@ -6,7 +6,7 @@ import { CATEGORY_TITLE_SUGGESTIONS } from '@/constants/categoryIcons'; const TITLE_PREFERENCES_KEY = 'userTitlePreferences'; // 최대 저장 제목 개수 (카테고리별) -const MAX_TITLES_PER_CATEGORY = 15; +const MAX_TITLES_PER_CATEGORY = 10; // 최소 사용 횟수 (이 횟수 미만이면 삭제 대상) const MIN_USAGE_COUNT = 2;