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 occurs when a user creates a new API communicator, logs in on another device, and changes the featured board. If the new communicator was created in the database without a defaultIncludedBoards value, that would be an empty array.
At the time of changing the featured board, we do this comprobation:
constdefaultBoardsIncluded=activeCommunicator.defaultBoardsIncluded//here we have a wrong truthy value ||fallbackInitialDefaultBoardsIncluded(activeCommunicator);
This causes the loss of the current root board on the user communicator
To be able to fix this bug, we need to add an exhaustive comprobation of the defaultIncludedBoards prop.
This occurs when a user creates a new API communicator, logs in on another device, and changes the featured board. If the new communicator was created in the database without a
defaultIncludedBoards
value, that would be an empty array.At the time of changing the featured board, we do this comprobation:
This causes the loss of the current root board on the user communicator
To be able to fix this bug, we need to add an exhaustive comprobation of the
defaultIncludedBoards
prop.Suggestions:
The text was updated successfully, but these errors were encountered: