Remove textTransform="capitalize" from pageHeader h3

This commit is contained in:
2025-02-14 20:37:12 -06:00
parent c69a4b8203
commit 44a8810260

View File

@ -270,7 +270,7 @@ function NavBar({absolute, light, isMini}: Props): JSX.Element
{ {
pageHeader && pageHeader &&
<Box display="flex" justifyContent="space-between"> <Box display="flex" justifyContent="space-between">
<MDTypography pb="0.5rem" textTransform="capitalize" variant="h3" color={light ? "white" : "dark"} noWrap> <MDTypography pb="0.5rem" variant="h3" color={light ? "white" : "dark"} noWrap>
{pageHeader} {pageHeader}
</MDTypography> </MDTypography>
</Box> </Box>