mirror of
https://github.com/dergigi/boris.git
synced 2026-01-05 16:04:36 +01:00
debug: add logging to reads filtering
This commit is contained in:
@@ -256,6 +256,16 @@ const Me: React.FC<MeProps> = ({ relayPool, activeTab: propActiveTab, pubkey: pr
|
||||
return true
|
||||
}
|
||||
})
|
||||
|
||||
// Debug logging
|
||||
if (activeTab === 'reads' && reads.length > 0) {
|
||||
console.log('📊 [Me/Reads] Debug:', {
|
||||
totalReads: reads.length,
|
||||
filteredReads: filteredReads.length,
|
||||
currentFilter: readingProgressFilter,
|
||||
sampleRead: reads[0]
|
||||
})
|
||||
}
|
||||
const sections: Array<{ key: string; title: string; items: IndividualBookmark[] }> = [
|
||||
{ key: 'private', title: 'Private Bookmarks', items: groups.privateItems },
|
||||
{ key: 'public', title: 'Public Bookmarks', items: groups.publicItems },
|
||||
|
||||
Reference in New Issue
Block a user