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
warning FS3261: Nullness warning: The types 'string' and 'string | null' do not have compatible nullability.
Why
This error is not especially friendly or easy to understand, nor does it give a solution to fix the issue.
How
Consider replacing with:
warning FS3261: The symbol `x` may be null, and accessing the `Length` member could lead to a runtime exception. Consider pattern matching and / or converting to an Option using 'Option.ofObj' to safely access the value.
jasiozet, majocha, TheAngryByrd, getkks and MangelMaxime