You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This happened when a user inadvertently provided return { complete: false } (rather than the correct { completed: false } - a missing d caused a lot of confusion!).
In the above, while there is an autocomplete experience guiding the user towards specifying the correct property completed with a d, it is still possible for the user to e.g. not notice or otherwise typo the property.
A fix here should add a type test that ensures providing invalid / typo'd properties (such as complete vs. completed) raises a TypeScript error.
The text was updated successfully, but these errors were encountered:
This happened when a user inadvertently provided
return { complete: false }
(rather than the correct{ completed: false }
- a missingd
caused a lot of confusion!).In the above, while there is an autocomplete experience guiding the user towards specifying the correct property
completed
with ad
, it is still possible for the user to e.g. not notice or otherwise typo the property.A fix here should add a type test that ensures providing invalid / typo'd properties (such as
complete
vs.completed
) raises a TypeScript error.The text was updated successfully, but these errors were encountered: