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
{{ message }}
This repository has been archived by the owner on Jan 27, 2023. It is now read-only.
I've had a similar issue as well. As you can see some the details in the screenshot. The type of event.entity.tier is number. As you mention above, wrapping 0 in parenthesis eliminates the error message.
In my case, it looks like the plugin thinks that the LHS could possibly be undefined (even though the source type supports neither undefined nor null. Adding a null coalesce as below also prevents the error from appearing.
if((event.entity.tier??0)>0){
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
if change
-1
to(-1)
it will not show the error message. Looks like the problem in-
signThe text was updated successfully, but these errors were encountered: