history table list adjusted and wallet display fixed
This commit was merged in pull request #749.
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
const PaginatedList = ({ onClick, prev, next, data, start, stop }) => {
|
||||
const PaginatedList = ({ onClick, prev, next, data, start, stop, borderTop=true }) => {
|
||||
if (data?.length > process.env.REACT_APP_ITEM_PER_PAGE) {
|
||||
return (
|
||||
<div className="p-3 flex justify-center items-center min-h-[70px] space-x-2 border-t-2 w-full">
|
||||
<div className={`p-3 flex justify-center items-center min-h-[70px] space-x-2 w-full ${borderTop ? 'border-t-2' : 'border-t-0'}`}>
|
||||
{/* Render pagination buttons */}
|
||||
{!prev && (
|
||||
<button
|
||||
|
||||
Reference in New Issue
Block a user