experimenting

This commit is contained in:
Tony Grosinger 2024-02-21 17:48:36 -08:00
parent 4d7491226a
commit 3ccf6030e4

View File

@ -61,6 +61,9 @@ export default {
allUsers = allUsers.filter((u) => u.id !== this.currentUser.id); allUsers = allUsers.filter((u) => u.id !== this.currentUser.id);
} }
const userCardInfos = allUsers.map((u) => { const userCardInfos = allUsers.map((u) => {
console.log('got here 1')
console.log(u);
if (this.cachedUserCardInfo[u.id]) { if (this.cachedUserCardInfo[u.id]) {
return this.cachedUserCardInfo[u.id]; return this.cachedUserCardInfo[u.id];
} }