From f90c0fef49655148f6c47ec758367308f99bf0e5 Mon Sep 17 00:00:00 2001 From: Kira Miller Date: Fri, 13 Sep 2024 21:53:23 +0000 Subject: [PATCH] fix: changing max num of highlights --- src/components/ContentHighlights/data/constants.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ContentHighlights/data/constants.js b/src/components/ContentHighlights/data/constants.js index 03969f65cb..fb66089644 100644 --- a/src/components/ContentHighlights/data/constants.js +++ b/src/components/ContentHighlights/data/constants.js @@ -43,7 +43,7 @@ export const TAB_TITLES = { export const MAX_HIGHLIGHT_TITLE_LENGTH = 60; // Max highlight sets per enterprise curation -export const MAX_HIGHLIGHT_SETS_PER_ENTERPRISE_CURATION = 12; +export const MAX_HIGHLIGHT_SETS_PER_ENTERPRISE_CURATION = 16; // Max number of content items per highlight set export const MAX_CONTENT_ITEMS_PER_HIGHLIGHT_SET = 24;