Updated to use inherit variant

Signed-off-by: Andre Wanlin <67169551+awanlin@users.noreply.github.com>
This commit is contained in:
Andre Wanlin
2023-01-30 06:25:31 -06:00
parent eebe28ec80
commit d0254bb02f
@@ -43,7 +43,7 @@ export const WelcomeTitle = () => {
return (
<Tooltip title={greeting.language}>
<Typography variant="h3">{`${greeting.greeting}${
<Typography component="span" variant="inherit">{`${greeting.greeting}${
profile?.displayName ? `, ${profile?.displayName}` : ''
}!`}</Typography>
</Tooltip>