diff --git a/src/components/collections/CollectionList.jsx b/src/components/collections/CollectionList.jsx
index 339828ed..ad1ff5c0 100644
--- a/src/components/collections/CollectionList.jsx
+++ b/src/components/collections/CollectionList.jsx
@@ -112,6 +112,16 @@ const CollectionList = ({ fromDate, toDate, isPending, searchString }) => {
),
align: "text-center",
},
+ {
+ key: "status",
+ label: "Status",
+ getValue: (col) => (
+
+ {col?.isActive ? "Active" : "Inactive"}
+
+ ),
+ align: "text-center",
+ },
{
key: "amount",
label: "Total Amount",
@@ -128,16 +138,7 @@ const CollectionList = ({ fromDate, toDate, isPending, searchString }) => {
),
align: "text-end",
},
- {
- key: "status",
- label: "Status",
- getValue: (col) => (
-
- {col?.isActive ? "Active" : "Inactive"}
-
- ),
- align: "text-center",
- },
+
{
key: "balance",
label: "Balance",
diff --git a/src/pages/collections/CollectionPage.jsx b/src/pages/collections/CollectionPage.jsx
index 8f68641d..5469be62 100644
--- a/src/pages/collections/CollectionPage.jsx
+++ b/src/pages/collections/CollectionPage.jsx
@@ -126,7 +126,7 @@ const CollectionPage = () => {
}`}
onClick={() => setShowPending(false)}
>
- All
+ Show All