fix(frontend): align Zod schemas with camelCase API responses
per_page → perPage in paginated response schemas, drop tag field from tag endpoint
This commit is contained in:
@@ -22,8 +22,8 @@ export default async function AllUsersPage({
|
||||
);
|
||||
}
|
||||
|
||||
const { items, total, per_page } = usersData;
|
||||
const totalPages = Math.ceil(total / per_page);
|
||||
const { items, total, perPage } = usersData;
|
||||
const totalPages = Math.ceil(total / perPage);
|
||||
|
||||
return (
|
||||
<div className="container mx-auto max-w-2xl p-4 sm:p-6">
|
||||
|
||||
Reference in New Issue
Block a user