diff --git a/src/components/TeamActivity/TeamActivityItem.tsx b/src/components/TeamActivity/TeamActivityItem.tsx index 5419c78a4..8138a2c46 100644 --- a/src/components/TeamActivity/TeamActivityItem.tsx +++ b/src/components/TeamActivity/TeamActivityItem.tsx @@ -65,14 +65,14 @@ export function TeamActivityItem(props: TeamActivityItemProps) { const username = ( - {user?.name || 'Unknown'} + {user?.name || 'Unknown'} ); @@ -84,11 +84,11 @@ export function TeamActivityItem(props: TeamActivityItemProps) { return (
+
{username} started {topicCount} topic{topicCount > 1 ? 's' : ''} in {resourceLink(activity)} @@ -102,7 +102,7 @@ export function TeamActivityItem(props: TeamActivityItemProps) { )} {actionType === 'done' && ( <> -
+
{username} completed {topicCount} topic{topicCount > 1 ? 's' : ''} in {resourceLink(activity)} @@ -116,7 +116,7 @@ export function TeamActivityItem(props: TeamActivityItemProps) { )} {actionType === 'answered' && ( <> -
+
{username} answered {topicCount} question{topicCount > 1 ? 's' : ''} in @@ -141,7 +141,7 @@ export function TeamActivityItem(props: TeamActivityItemProps) { return (