Dirk Möbius

Results 24 comments of Dirk Möbius

It seems that "drugstore" has already been added to `AddressType` in release v0.12.0: https://github.com/googlemaps/google-maps-services-java/releases/tag/v0.12.0. So this issue can be closed now. Original commit was 9a91654c931d4a8ff9977d58c4d4adf1d2ba9c39

duplicate of #159

I have the same problem as lisandromc and michaelAkrawi. I call $validate() on an object which has most fields undefined. Problem is that the data comes from outside and it's...

You can use `this.validation.removeErrors('')`. It's currently undocumented, but this is adressed by #50.

and `this.validation.removeErrors('myField')`, too! Very helpful methods!

Avoiding multi-line imports did _not_ help in my case. Line numbers are totally off in stacktraces.

This hasn't been mentioned before: the output of the "link" response headers can be controlled by the option `preload` in a server hook: ```js export const handle: Handle = async...

The issue could be fixed by changing `handle_error_and_jsonify` to: ``` export async function handle_error_and_jsonify(event, options, error) { if (error instanceof HttpError) { return error.body; } else { if (__SVELTEKIT_DEV__ &&...

You could use [patch-package](https://www.npmjs.com/package/patch-package) to patch this changes during `npm install` or after `git checkout`. That's what I do. (I don't have the time to fork and build SvelteKit either.)