Use item visibility to filterTiles

This commit is contained in:
Alejandro Pinar Ruiz
2022-06-01 21:13:00 +02:00
parent 04774c23ed
commit c33e03f4f5
2 changed files with 7 additions and 3 deletions

View File

@@ -74,7 +74,7 @@ const isItemVisibleToUser = (displayData, currentUser, isGuest) => {
};
/* Putting it all together, the function to export */
const checkItemVisibility = (item) => {
export const checkItemVisibility = (item) => {
const currentUser = getCurrentUser(); // Get current user object
const isGuest = isLoggedInAsGuest(); // Check if current user is a guest
const displayData = item.displayData || {};