Skip to content

Commit

Permalink
remove log statements
Browse files Browse the repository at this point in the history
  • Loading branch information
wrnrlr committed Nov 5, 2024
1 parent 8ee35bd commit bca5cce
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/controlflow.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ export function List<T>(props:ListProps<T>) {
}
const mapper = indexes ? mapperWithIndexes : mapperWithoutIndexes
return memo(() => {
console.log('list:',list)
const newItems = list.call ? list() : []
// (newItems)[$TRACK]; // top level tracking
return untrack(() => {
Expand Down
1 change: 0 additions & 1 deletion src/resource.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@ export function resource(pSource,pFetcher,pOptions) {
loading: {
get() {
const s = state();
console.log('loading',s)
return s === 'pending' || s === 'refreshing';
}
},
Expand Down

0 comments on commit bca5cce

Please sign in to comment.