From ee2fdb539f47bf86a90a5d135981611718937b0f Mon Sep 17 00:00:00 2001 From: Ruban Sahoo Date: Fri, 2 Feb 2024 04:39:09 +0530 Subject: [PATCH] updated max labels to 8 --- src/utils/constants.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/constants.js b/src/utils/constants.js index a0e7247..82bdadb 100644 --- a/src/utils/constants.js +++ b/src/utils/constants.js @@ -55,7 +55,7 @@ const SECTION_DATA = [ }, ]; -const MAX_LABELS = 7; +const MAX_LABELS = 8; const { REACT_APP_GOOGLE_API_KEY } = process.env;