load in batches 50 photos instead of 30

This commit is contained in:
2020-10-21 11:20:27 +00:00
committed by Stepan Usatiuk
parent 492fbb1ccb
commit 2ceec84721

View File

@@ -11,4 +11,4 @@ interface IAPISuccessResponse<T> {
export type IAPIResponse<T> = IAPIErrorResponse<T> | IAPISuccessResponse<T>;
export const IPhotosListPagination = 30;
export const IPhotosListPagination = 50;