Новые правки на сайте

This commit is contained in:
Web-serfer 2026-04-15 19:32:21 +05:00
parent 261d5db2d7
commit f6f2fb3a35
7 changed files with 106 additions and 6 deletions

View file

@ -48,7 +48,7 @@ export async function getPosts(options?: {
return {
posts: (result.items || []) as unknown as Post[],
total: result.totalItems || 0,
page: (result.pageInfo?.page || 1),
page: result.page || 1,
totalPages: result.totalPages || 1,
};
}