-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
added drop in pass trigger #210
Conversation
scopes added |
width: 100, | ||
height: 100, | ||
}; | ||
const dropInPassResponse: DropInPassApiResponse = { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
naming. this is not a (full) response but data for one pass.
that part works for me (I hit "connect new account" to be sure the token was renewed). but I can into this error:
|
works now 👍 |
src/utils/api.ts
Outdated
const now = DateTime.now(); | ||
const lastMonth = now.minus({ months: 1 }); | ||
const nextMonth = now.plus({ months: 1 }); | ||
if (format) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
isn't the format you are passing the same as what toISODate
returns?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah sorry. Had an oversight.. I did try it.. but I guess I forgot to reload the platform and just assumed its still not the correct format or something and proceeded to add the format parameter.
fixes #194