debug-log
All checks were successful
deploy / test (push) Successful in 1m13s

This commit is contained in:
Untone 2023-12-27 23:40:00 +03:00
parent 31a8b68b16
commit 340d984045

View File

@ -95,6 +95,7 @@ type InitialState = {
export const loadAuthors = async (args: QueryLoad_Authors_ByArgs): Promise<void> => {
const authors = await apiClient.loadAuthorsBy(args)
console.debug(`[load_authors_by] loaded ${Object.keys(authors).length} authors with stat`)
addAuthors(authors)
}