Skip to content

Commit

Permalink
Update AgentCard.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
Corantin committed Sep 25, 2023
1 parent 7cdaef5 commit ed0f736
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/nextjs/pages/agent-explorer/AgentCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ type Props = {
agent: AgentModel;
};

export default function PropertyCard({ agent }: Props) {
export default function AgentCard({ agent }: Props) {
const followers = useMemo(() => {
if (agent.followers >= 1000) {
return (agent.followers / 1000).toFixed(1) + "K";
Expand Down

0 comments on commit ed0f736

Please sign in to comment.