-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
QueryManager, fix "invalidate" -> "invalidated" typo i think. #4041
Conversation
Was hunting for another bug and came across this. I think it is suppose to be "invalidated"
Thanks for pointing this out @quazzie! This is a bug, although it's benign since the misuse of
Your PR is correct, but I'd like to leave this open a bit longer, to get a proper TS fix in place. Thanks! |
@hwillson
and having callers merge the |
@danilobuerger Hmmm - |
@hwillson They couldn't forget it because of the return type being the full |
Thanks @danilobuerger - we'll definitely review a PR for this! |
Actually, what I said is not working either, as this suffers from the same lack of excess checking. I however found a solution with |
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.
Thanks @quazzie!
* Properly type setQuery and fix now typed callers Fixes #4041 * Changelog update
Was hunting for another bug and came across this.
I didn't find any other reference to "invalidate" property only "invalidated".
Someone with more knowledge of the code maybe knows better.