Sombathoudom Chheng

Results 5 comments of Sombathoudom Chheng

> remove all "use strict"; it works how to remove useStrict and where to remove it?

Just clear the browser cache

Does it fix yet because i also have that issue. ``` **{ "data": [ { ..... "roles": [ { "id": 1, "name": "Role1", "created_at": "2024-12-07T02:52:01.343688+00:00", "updated_at": null }, { "id":...

Thanks you. but 1 more issue. **{ "data": [ { ..... "roles": [ { "id": 1, "name": "Role1", "created_at": "2024-12-07T02:52:01.343688+00:00", "updated_at": null }, { "id": 2, "name": "Admin", "created_at": "2024-12-07T05:12:04.755316+00:00",...

here is my current solution ``` SchemaType = TypeVar("SchemaType", bound=BaseModel) class ListResponse(BaseModel, Generic[SchemaType]): items: list[SchemaType] class PaginatedListResponses(ListResponse[SchemaType]): total_count: int has_more: bool page: Optional[int] = None items_per_page: Optional[int] = None @router.get("/foods",...