Alex

Results 8 issues of Alex

The following two finds returns different results but when cached, will return the first cached result. ``` const roles = await app.service('role').find({ paginate: false, query: { enabled: true, }, });...

Is it possible to update the types for the `useTracking` hook to allow for passing in an object.

help wanted

In a carousel, four list items are shown at the desktop breakpoint, and four are hidden offscreen. Screen readers incorrectly tell their users that this is a list of four...

When rendering on the server it seems like errors of requests are swallowed and are never sent to the render. Here's an example, assume the response contains no data and...

same-as-relay

In the docs for [Review popover example](https://preline.co/docs/popover.html#review-popover-example), whenever the popover trigger is set to `click` it's not possible to interact with the content shown. Eg. you can't click the links...

A JS error is thrown when the timeout occurs because of an undefined variable here. https://github.com/mailgun/validator-demo/blob/master/mailgun_validator.js#L100 This was introduced here https://github.com/mailgun/validator-demo/commit/d0012f4aa9fc92b6be114ae6341be4fdd518205a#diff-2058a81314d1963d903b2bfdf54a9773L75

When sending a test email the request returns a 504. Checked the credentials and they are correct. Not sure what may be causing this.

I'm using the following code for my callback route. ``` app.get('/auth/facebook/callback', passport.authenticate('facebook', { successRedirect : '/profile', failureRedirect : '/', failureFlash : true })); ``` It works, authentication works as expected,...