diff --git a/src/app/(user)/user/profiles/page.tsx b/src/app/(user)/user/profiles/page.tsx
index 30114b4..f595293 100644
--- a/src/app/(user)/user/profiles/page.tsx
+++ b/src/app/(user)/user/profiles/page.tsx
@@ -770,35 +770,37 @@ function ProfilesPageContent() {
)}
- {/* Profile Cards */}
+ {/* Profile Cards - scrollable container */}
{!loading && !error && agents.length > 0 && (
-
- {agents.map((profile) => (
-
- ))}
-
- )}
+
+
+ {agents.map((profile) => (
+
+ ))}
+
- {/* Pagination */}
- {!loading && !error && totalPages > 1 && (
-
-
-
- Page {currentPage} of {totalPages}
-
-
+ {/* Pagination */}
+ {totalPages > 1 && (
+
+
+
+ Page {currentPage} of {totalPages}
+
+
+
+ )}
)}