Removing forced capitalization for Entity types in the sidebar.

Signed-off-by: Josh Maxwell <cctechwiz@gmail.com>
This commit is contained in:
Josh Maxwell
2022-10-22 17:38:10 -06:00
parent 4a6143a3be
commit 03c9e3aea6
@@ -54,10 +54,10 @@ export const EntityTypePicker = (props: EntityTypePickerProps) => {
if (availableTypes.length === 0 || error) return null;
const items = [
{ value: 'all', label: 'All' },
{ value: 'all', label: 'all' },
...availableTypes.map((type: string) => ({
value: type,
label: capitalize(type),
label: type,
})),
];