Limit title suggestions per category

Limit the number of title suggestions stored per category to 10.
This commit is contained in:
gpt-engineer-app[bot]
2025-03-22 13:17:16 +00:00
parent 2ce87a7994
commit 5f0092edf2

View File

@@ -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;