Skip to content

Commit ea2b79e

Browse files
committed
fix(PaginationListItem): remove !important and key=(pageNumber)
Signed-off-by: Mert Şişmanoğlu <mertssmnoglu@gmail.com>
1 parent c121c6d commit ea2b79e

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

packages/ui-components/src/Common/BasePagination/PaginationListItem/index.module.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@reference "../../../styles/index.css";
22

33
.listItemWrapper {
4-
@apply mt-0!;
4+
@apply mt-0;
55
}
66

77
.listItem,

packages/ui-components/src/Common/BasePagination/PaginationListItem/index.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ const PaginationListItem: FC<PaginationListItemProps> = ({
2323
}) => {
2424
return (
2525
<li
26-
key={pageNumber}
2726
aria-setsize={totalPages}
2827
aria-posinset={pageNumber}
2928
className={styles.listItemWrapper}

0 commit comments

Comments
 (0)