diff --git a/src/stores/zine/authors.ts b/src/stores/zine/authors.ts index 71db2136..4744d74a 100644 --- a/src/stores/zine/authors.ts +++ b/src/stores/zine/authors.ts @@ -95,6 +95,7 @@ type InitialState = { export const loadAuthors = async (args: QueryLoad_Authors_ByArgs): Promise => { const authors = await apiClient.loadAuthorsBy(args) + console.debug(`[load_authors_by] loaded ${Object.keys(authors).length} authors with stat`) addAuthors(authors) }