Albert Yu
Albert Yu
> Hi, @pgrekovich I solved this with [this approach](https://github.com/storybookjs/storybook/issues/10231#issuecomment-728038867) the difference is that I add `@emotion/styled` on an alias too. How did you alias `@emotion/styled` ? I tried but still...
Use the `getFormValues` selector ([docs](https://redux-form.com/8.2.2/docs/api/selectors.md/#-code-getformvalues-formname-string-code-returns-code-state-gt-formvalues-object-code-)) ``` import { useSelector } from 'react-redux'; import { getFormValues } from 'redux-form'; // then const formValues = useSelector(state => getFormValues('formName')(state)) ```
Nothing to do with `useSelector` ``` value => value && value.trim().length > max ? 'error' : undefined; const maxLength1 = maxLength(1); ``` alternatively, use [sync validation](https://redux-form.com/8.3.0/examples/syncvalidation/)
> @gzrae Can you please check why the "ci/circleci: test_lint" check is failing due to timeout We tweaked this here! https://github.com/mui/material-ui/pull/37223
@siriwatknp At the "Render demos" step, I found that there is no `docs/pages/material-ui/react-filled-input`, only `react-text-field` Would all the components that compose TextField need to be converted first to progress this?...
Thanks for reporting this - I think this could be an issue with the [playground](https://mui.com/material-ui/customization/color/#playground) and not the Slider component itself, as it doesn't repro in the Slider demos [here](https://mui.com/material-ui/react-slider/)...
@yassinmars Thanks for looking into this - would you like you make a PR so we can try out the changes?
In the astro repo there is an [issue](https://github.com/withastro/astro/issues/4432) tracking CSS-in-JS support with some workarounds to make Emotion work – though I'm not familiar enough with Astro to really evaluate if...
@vladpaul09 I can reproduce this – as a workaround for now, you can wrap the component with `NoSsr` to achieve the effect on load if the parent wasn't an RSC...
@timbarclay Thanks for reporting this ~ for those states we added custom static variants via Tailwind plugins, you can refer to the tailwind config for the demos here: https://github.com/mui/material-ui/blob/master/docs/tailwind.config.js