Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Responsive Typography error while rendering the channel title in VideoDetail.jsx page #4

Closed
iampsr8 opened this issue Aug 30, 2022 · 1 comment

Comments

@iampsr8
Copy link

iampsr8 commented Aug 30, 2022

Specifying Variants in Typography tag of channel title for responsive size gives an error

the following code

<Typography variant={{ sm: "subtitle1", md: 'h6' }} color="#fff" >{channelTitle} </Typography>

will give an error of invalid prop variant passed

Screenshot 2022-08-30 215046

And also the channel title is rendered as a plain text

This can be solved by passing the typography inside the sx parameter as

<Typography sx={{typography: { sm: 'subtitle1', md: 'h6' }}} color='#fff'> {channelTitle}</Typography>

@dmalvi2002
Copy link

Please change variant value from "body1" to "subtitle1" or "subtitle2". That should fix it.

@iampsr8 iampsr8 closed this as completed Sep 1, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants