diff --git a/web/src/pages/Admin/ServiceSessions/index.tsx b/web/src/pages/Admin/ServiceSessions/index.tsx index 73dbbc1..88a2edc 100644 --- a/web/src/pages/Admin/ServiceSessions/index.tsx +++ b/web/src/pages/Admin/ServiceSessions/index.tsx @@ -71,7 +71,7 @@ const AdminServiceSessionsPage: FC = () => { Service - Source + User + IP Status @@ -109,26 +109,44 @@ const AdminServiceSessionsPage: FC = () => { key={session.id} className="hover:bg-gray-50 dark:hover:bg-gray-800" > - -
- {typeof session.user?.profile_picture === "string" && ( - - )} - - -

- {session.user?.full_name ?? ""}{" "} - {session.user_id === profile?.id ? "(You)" : ""} -

- -
- {/* */} -

{session.client_id}

+ {typeof session.api_service?.icon_url === "string" && ( + + )} + +

+ {session.api_service?.name ?? session.client_id} +

+ + + + +
+
+ {typeof session.user?.profile_picture === "string" && ( + + )} + +
+ +

+ {session.user?.full_name ?? ""}{" "} + {session.user_id === profile?.id ? "(You)" : ""} +

+ +

+ {session.ip_address ?? "No IP available"} +

+
+
+