diff --git a/src/components/deposit-list.tsx b/src/components/deposit-list.tsx index f18437c..5d60aa3 100644 --- a/src/components/deposit-list.tsx +++ b/src/components/deposit-list.tsx @@ -70,17 +70,15 @@ const DepositList = forwardRef( {isDepositListLoading ? ( ) : depositList?.length ? ( - depositList - .slice(0, maxCount) - .map((deposit) => ( - handleDepositChange(deposit)} - /> - )) + depositList.map((deposit) => ( + handleDepositChange(deposit)} + /> + )) ) : ( )} diff --git a/src/components/unstake-deposit-list.tsx b/src/components/unstake-deposit-list.tsx index f889809..a58720e 100644 --- a/src/components/unstake-deposit-list.tsx +++ b/src/components/unstake-deposit-list.tsx @@ -47,18 +47,16 @@ const UnstakeDepositList = forwardRef( const content = ( <> {deposits?.length ? ( - deposits - .slice(0, maxCount) - .map((deposit) => ( - handleDepositChange(deposit)} - /> - )) + deposits.map((deposit) => ( + handleDepositChange(deposit)} + /> + )) ) : ( )}