lint fix wip

This commit is contained in:
Nicolas Cantu 2026-01-06 15:35:06 +01:00
parent fbcf8fcd91
commit a50d308578

View File

@ -28,7 +28,7 @@ export function useArticles(searchQuery: string = '', filters: ArticleFilters |
try { try {
const cachedAuthors = await objectCache.getAll('author') const cachedAuthors = await objectCache.getAll('author')
const authors = cachedAuthors as Article[] const authors = cachedAuthors as Article[]
// Calculate totalSponsoring for each author // Calculate totalSponsoring for each author
const authorsWithSponsoring = await Promise.all( const authorsWithSponsoring = await Promise.all(
authors.map(async (author) => { authors.map(async (author) => {