diff --git a/frontend/src/components/InteractionStats.tsx b/frontend/src/components/UserStats.tsx similarity index 90% rename from frontend/src/components/InteractionStats.tsx rename to frontend/src/components/UserStats.tsx index 06d4f68..b33fcd4 100644 --- a/frontend/src/components/InteractionStats.tsx +++ b/frontend/src/components/UserStats.tsx @@ -34,7 +34,7 @@ function ApiToGraphData(apiData: InteractionGraph) { } -const InteractionStats = (props: { data: UserAnalysisResponse }) => { +const UserStats = (props: { data: UserAnalysisResponse }) => { const graphData = ApiToGraphData(props.data.interaction_graph); return ( @@ -44,7 +44,7 @@ const InteractionStats = (props: { data: UserAnalysisResponse }) => { This graph visualizes interactions between users based on comments and replies. Nodes represent users, and edges represent interactions (e.g., comments or replies) between them.
-