diff --git a/frontend/src/components/agents/AgentTable.tsx b/frontend/src/components/agents/AgentTable.tsx
index eeaa1f2..6529c42 100644
--- a/frontend/src/components/agents/AgentTable.tsx
+++ b/frontend/src/components/agents/AgentTable.tsx
@@ -23,21 +23,13 @@ function truncateId(id: string): string {
return `${id.slice(0, 6)}…${id.slice(-4)}`
}
-function SortIcon({ active, dir }: { active: boolean; dir: SortDir }) {
- if (!active) return
- return dir === 'asc' ? (
-
- ) : (
-
- )
-}
export function AgentTable({
agents,
loading,
- sortKey,
- sortDir,
- onSort,
+ sortKey: _sortKey,
+ sortDir: _sortDir,
+ onSort: _onSort,
onRowClick,
}: AgentTableProps) {
const { t } = useTranslation()
diff --git a/frontend/src/components/common/ProtectedRoute.tsx b/frontend/src/components/common/ProtectedRoute.tsx
deleted file mode 100644
index 780e273..0000000
--- a/frontend/src/components/common/ProtectedRoute.tsx
+++ /dev/null
@@ -1,18 +0,0 @@
-import React from 'react';
-import { Navigate, useLocation } from 'react-router-dom';
-import { useWallet } from '../../context/WalletContext';
-
-interface ProtectedRouteProps {
- children: React.ReactNode;
-}
-
-export function ProtectedRoute({ children }: ProtectedRouteProps) {
- const { connected } = useWallet();
- const location = useLocation();
-
- if (!connected) {
- return