chore: uppercase theme selector text

This commit is contained in:
Adrian Castro
2024-03-26 00:27:57 +01:00
parent ad3411fb3c
commit 7dd708294f

View File

@@ -181,7 +181,9 @@ export function ThemeSelector(props: SelectProps) {
i === themeOptions.length - 1 ? "$8" : 0
}
>
<Select.ItemText>{item}</Select.ItemText>
<Select.ItemText>
{item.charAt(0).toUpperCase() + item.slice(1)}
</Select.ItemText>
<Select.ItemIndicator ml="auto">
<MaterialIcons
name="check-circle"