Alex Dozmorov

Results 6 comments of Alex Dozmorov

If you use docker, this solution works 1) install fonts globally ```docker COPY ./my-custom-font.ttf ./ RUN mkdir -p /usr/share/fonts/truetype/ RUN install -m644 my-custom-font.ttf /usr/share/fonts/truetype/ RUN rm ./my-custom-font.ttf ``` 2) just...

![image](https://user-images.githubusercontent.com/20397923/78219387-17cfd880-74c8-11ea-8c6f-2d7bb7e2ff81.png) If scale equal min (default value 0.1) and i do scaleOut then scaleX and scaleY < 0

I also have the same problem. My workaround (not flexible, but it's ok for simple cases): ```ts export const getFormDirtyFields = ({ initialValues, values, }: { initialValues: FormState; values: FormState;...

> `'LiveKitRoom' cannot be used as a JSX component.` ` Its return type 'ReactNode' is not a valid JSX element. Type 'undefined' is not assignable to type 'Element | null'.

My workaround ```js import { useFieldArray } from 'react-final-form-arrays'; ... const { fields: columnsFields } = useFieldArray( 'fieldName', { validate: value => { return value.length < 2 ? 'Your error'...