Ryan Rhee
Ryan Rhee
fyi: redirecting to `http://localhost:8000/foo` resulted in a redirect loop, but redirecting to `http://localhost:8000` stopped the redirect loop and made auth work as expected. I'm using nextjs, using `Amplify.configure()`, and manually...
I saw this error happen when I was going to `localhost:3000`. If I instead navigated to `127.0.0.1:3000`, it works fine. (This is probably because the twitter callback URL is also...
(side note: tried to add the `feature` label by checking the box, but the label didn't get applied.)
How do you feel about adding a `skip:` parameter to the `@rest()` directive?
I think you're talking about the `type:` parameter on the `@rest()` directive, right? I would expect the `type` parameter to be just match the schema type, which would be optional....
Another thing to point out is that the apollo client `useQuery` has a skip that also makes for a less ergonomic type. Extending the above example, if we had a...
thanks for your consideration. I'll submit a PR.
@prashantv ideally each stack frame would be parsed and i could match against it, but it seems such parsing isn't easily doable in the current codebase. Sub-string match will give...
Full function name. On Wed, May 8, 2019 at 2:04 PM Prashant Varanasi wrote: > @prashantv ideally each stack frame would > be parsed and i could match against it,...
my $0.02: when using instances of axios, they should be passed in. in other words, a class that calls `_axiosInstance.post()` should take in the `_axiosInstance` as a dependency somehow, e.g....