From 1f47658c3cf5a87e591410259cdfb4aebacaa30f Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Mon, 9 May 2022 19:47:41 +0200 Subject: [PATCH] Fixed coding styles --- src/common/SimplePaginator.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/common/SimplePaginator.tsx b/src/common/SimplePaginator.tsx index 00e6e185..9ebc2ef4 100644 --- a/src/common/SimplePaginator.tsx +++ b/src/common/SimplePaginator.tsx @@ -17,7 +17,9 @@ interface SimplePaginatorProps { centered?: boolean; } -export const SimplePaginator: FC = ({ pagesCount, currentPage, setCurrentPage, centered = true }) => { +export const SimplePaginator: FC = ( + { pagesCount, currentPage, setCurrentPage, centered = true }, +) => { if (pagesCount < 2) { return null; }