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
Sometimes Common.credentials is an object and sometimes a string. All supporting logic seems to depend on this being an object so we need to rework this to ensure it is always an object. The setter defined in common.js shows:
If we want to keep this as a string representation of an object, we need to update all supporting logic to call JSON.parse before attempting to iterate.
The text was updated successfully, but these errors were encountered:
Sometimes Common.credentials is an object and sometimes a string. All supporting logic seems to depend on this being an object so we need to rework this to ensure it is always an object. The setter defined in common.js shows:
So every time the application does:
We get a string assigned.
If we want to keep this as a string representation of an object, we need to update all supporting logic to call JSON.parse before attempting to iterate.
The text was updated successfully, but these errors were encountered: