+
+ {categoryVisibility.map((category, index) =>
+
+ {renderSubStatus(
+ 'checked',
+ <>
+ {index + 1}
+ {'.'}
+ {capitalize(category)}
+ >,
+ )}
+ )}
+ {getHiddenDefaultCategories(categoryVisibility)
+ .map((category, index) =>
+
+ {renderSubStatus(
+ 'optional',
+
+ {categoryVisibility.length + index + 1}
+ {'.'}
+ {capitalize(category)}
+ ,
+ )}
+ )}
+
+ Configure order and visibility of categories
+ (seen in grid sidebar and CMD-K results)
+ by storing comma-separated values
+ (default: {`"${DEFAULT_CATEGORY_KEYS.join(',')}"`}):
+ {renderEnvVars(['NEXT_PUBLIC_CATEGORY_VISIBILITY'])}
+