Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 871ff06

Browse files
committedAug 28, 2024··
fix: spacing between username and message
1 parent cf2fceb commit 871ff06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎apps/web/src/app/[orgShortcode]/convo/_components/convo-list-item.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ export const ConvoItem = memo(function ConvoItem({
173173
<div className="flex flex-row items-start justify-start gap-1 text-left text-sm">
174174
<span className="ph-no-capture line-clamp-2 overflow-clip break-words">
175175
<span className="font-semibold">
176-
{authorAvatarData?.name + ':' ?? ''}
176+
{authorAvatarData?.name.trim() + ': ' ?? ''}
177177
</span>
178178
{convo.entries[0]?.bodyPlainText.trim() ?? ''}
179179
</span>

0 commit comments

Comments
 (0)
Please sign in to comment.