Alex Dozmorov
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...
 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;...
Hi, any updates?
> `'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'...