John
John
Same error occurs when using PyQt6. Some styles are not correctly applied, there is overlap between widgets.
Another solution would be to change your backend server to return status 200 instead of 4xx for usage errors, that way you can read the error message/code from the payload...
I found another solution that will not only pass errors but also cookies. Assuming your server URL starts with `/api`, create a file `server/api/[...].ts` with the following content: ``` import...
Hey Chris, thanks for your reply. I believe the preHook would indeed solve the problem but the better solution is probably to use the unleash-proxy and combine the features this...
Would the following be a good identity loader as well? ``` @principal.identity_loader def _identity_loader(): if hasattr(current_user, 'id'): return Identity(current_user.id) @user_loaded_from_request.connect_via(app) def on_user_loaded_from_request(sender, user): identity_changed.send( flask.current_app._get_current_object(), identity=Identity(user.id) ) @identity_loaded.connect def on_identity_loaded(sender,...