Alisher Khalmuratov
Alisher Khalmuratov
One option will be to use a class as your query parameters: ```typescript class MyParams { @ApiModelProperty() prop: number; @ApiModelPropertyOptional() optionalProp: number; } @Controller('MyCtrl') class MyCtrl { @Get() async getList(@Query()...
What version of Tailwind are you using? Try version 3.4.1; version 3.4.2 introduced some changes to how dark mode styles are generated. I believe it is not handled by NativeWind...
Is there any available workaround for this? This limitation also affects the [useImperativeHandle](https://playground.react.dev/#N4Igzg9grgTgxgUxALhAHRFMCAEcA2AlggHYAuGA3GiTYQLYAOEMZOwOAZiwO4CGMACYAlBJwA0OLAgCSTBDD5lCANwQAJPiUH5cAXy4wI9HBhgI+cCiGq0ScCCTBsAsgE8AwseYlSbALxcvAIiYgAUnFD2yo447l5Mjn5hjEaMYJLcMPxCCKGcAJTsNDhS2HKMCkqqGlo6CBHBufmSYUX+AHzFJKWl5mSwPcB6tqV6kgDaALoFozj9gzgkUPj4tnqzIHpAA).
To anyone encountering optimization issues with the usage of `useImperativeHandle`, you can place the `forwardedRef` inside a `useState` hook. ```js const [refs] = useState(() => { return { forwardedRef };...