+
<>>
diff --git a/src/app/components/activity/Activity.tsx b/src/app/components/activity/Activity.tsx
index 28d3020..236db3c 100644
--- a/src/app/components/activity/Activity.tsx
+++ b/src/app/components/activity/Activity.tsx
@@ -18,7 +18,6 @@ import {
CardTitle,
} from '@/app/components/ui/card';
import { Button } from '../ui/button';
-import { setSheet } from '@/GlobalRedux/Features/sheet/sheetSlice';
export default function Activity() {
const [transactions, setTxs] = useState
([]);
@@ -49,7 +48,7 @@ export default function Activity() {
useEffect(() => {
/* dispatch(setTransactions(transactions)); */
- setTxs(transactionState?.slice(0, 3));
+ setTxs(transactionState?.slice(0, 5));
}, [transactionState]); // Add transactions as a dependency
return (
@@ -59,7 +58,7 @@ export default function Activity() {
key='activity-key'
layoutId='activity'
transition={{ duration: 0.3 }}
- className='bg-muted w-full rounded-full text-xl '
+ className='bg-slate-50/10 backdrop-blur-xl w-full rounded-full text-xl '
>
@@ -67,7 +66,7 @@ export default function Activity() {
Recent Transactions
-
+
{transactions &&
transactions.map((transaction: any, i: any) => (
diff --git a/src/app/home/page.tsx b/src/app/home/page.tsx
index fef8418..a67a14f 100644
--- a/src/app/home/page.tsx
+++ b/src/app/home/page.tsx
@@ -167,7 +167,7 @@ export default function Page() {
-