Mike Peters
Mike Peters
This issue completely broke our website, and not just for guest carts. Somehow even when a logged in user checks out, the address isn't set based on their primary address...
Is there already an easy way to configure CORS? I had been looking at issue #88 and related (but outdated) PR #103 - and considering assigning myself, but only if...
Not really :P these changes are pretty trivial
For my own app I made sure to add the `queries` to the `AndroidManifest.xml` as described above, and then added a custom UI component that lets the user pick what...
Yes I forgot to put in the readme that you should add: `import android.content.Intent;`
I confirmed it's happening on my chromium-based browsers: - Microsoft Edge (Ubuntu) - Chrome (Mac) It doesn't seem to happen on Firefox (Ubuntu). I also noticed that it seems to...
I think the `res` parameter is the 3rd parameter in the error callback (not the 2nd): ```typescript proxyServer.on('error', (error, req, res) => { if (res instanceof ServerResponse) { res.writeHead(502, {...
No, unfortunately I don't have a resolution; for now I've just been careful to treat any fields I use my directive with as nullable, even though the generated typings say...
Sorry I just meant that I wasn't able to find a workaround without making the change to expose the config of conditional directives. I haven't tried to create a pull...
For anyone searching for a workaround to this issue, what worked for me is: - To only show a header or footer, set the other template to a _non-empty string_...