diff --git a/assets/wheretf.svg b/assets/wheretf.svg new file mode 100644 index 0000000..466d95c --- /dev/null +++ b/assets/wheretf.svg @@ -0,0 +1,138 @@ + + + + diff --git a/web/app/activity/page.tsx b/web/app/activity/page.tsx index 0863398..2c00c2a 100644 --- a/web/app/activity/page.tsx +++ b/web/app/activity/page.tsx @@ -1,6 +1,7 @@ "use client"; import { useCallback, useEffect, useState } from "react"; +import Spinner from "../components/Spinner"; interface Transaction { id: string; @@ -139,8 +140,8 @@ export default function ActivityPage() { {/* Transaction list */}
{loading ? ( -
- Loading... +
+
) : filtered.length === 0 ? (
diff --git a/web/app/components/Sidebar.tsx b/web/app/components/Sidebar.tsx index 520b7b6..88ffbb1 100644 --- a/web/app/components/Sidebar.tsx +++ b/web/app/components/Sidebar.tsx @@ -156,13 +156,32 @@ export default function Sidebar() {