Bengt Weiße
Bengt Weiße
possible Workaround: ```TS app.use( /\/((?!healthcheck).)*/, // Token verification activated except for healthcheck request async (req: any, res: any, next: NextFunction) => expressjwt({ secret: jwksRsa.expressJwtSecret({ cache: true, rateLimit: true, jwksRequestsPerMinute: 5,...
@quinarygio do you have the `as Promise` in your code?
Seems like the main-problem is, that it is wrapping calling `next` with `setImmediate` so the return type is not matching.
as a workaround try to use the `overrides` property of the package.json https://docs.npmjs.com/cli/v10/configuring-npm/package-json?v=true#overrides ```JSON { "overrides": { "evergreen-ui": { "react": "$react", "react-dom": "$react-dom" } } } ``` this overrides the...
Feel free to contribute on this with a pr. I just upgraded to angular 21 and checked the default behavior within my demo repo. I had no time to check...
@grizlizli i added a "failing" example to the demo repo for reproduction
i do not even know if it is in general expected to work correctly, since an angular "field" just directly adds two way binding. So i do not even know...
@grizlizli as a workaround just do something like this for now: ```HTML [ngModel]="form.editor().value()" (ngModelChange)="form.editor().value.set($event)" ``` ```TS editorField = signal({ editor: '' }) form = form(this.editorField) ```
For a new component - here is a minimal guide: https://angular.dev/guide/forms/signals/custom-controls
@grizlizli since i see many issues regarding custom signal form controls are popping up at the angular repo... honestly i would wait to create a new component for now and...