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
Currently, an issue stemming from issue #86, there are multiple occurrences of 'any' being used in unsafe/subpar ways throughout the dapp. Once #86 is fixed, all 'any' types should be converted to definite types, as well as any occurrence of a variable being used and will default to an empty string if the variable is undefined. There are numerous places that look like this someVar || "" this should be avoided and further conditional checks should be implemented to revise how falsy values are handled.
The text was updated successfully, but these errors were encountered:
Currently, an issue stemming from issue #86, there are multiple occurrences of 'any' being used in unsafe/subpar ways throughout the dapp. Once #86 is fixed, all 'any' types should be converted to definite types, as well as any occurrence of a variable being used and will default to an empty string if the variable is undefined. There are numerous places that look like this
someVar || ""
this should be avoided and further conditional checks should be implemented to revise how falsy values are handled.The text was updated successfully, but these errors were encountered: