Skip to content

Commit

Permalink
remove logging
Browse files Browse the repository at this point in the history
  • Loading branch information
docimin committed Jan 26, 2025
1 parent 1e40240 commit 3205a07
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion app/user/(stacks)/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ export default function UserListPage() {
const fetchUsers = async (newOffset: number = 0) => {
const cachedUsers =
await getAllCache<UserData.UserDataDocumentsType>('users')
console.log(cachedUsers)
if (cachedUsers && typeof cachedUsers === 'object') {
const usersArray = Object.values(cachedUsers).map((item) => item.data)
setUsers(usersArray)
Expand Down

0 comments on commit 3205a07

Please sign in to comment.