diff options
Diffstat (limited to 'src/components/profile/ProfilePreview.tsx')
-rw-r--r-- | src/components/profile/ProfilePreview.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/profile/ProfilePreview.tsx b/src/components/profile/ProfilePreview.tsx index 6848f993..7bbc3fb6 100644 --- a/src/components/profile/ProfilePreview.tsx +++ b/src/components/profile/ProfilePreview.tsx @@ -149,7 +149,7 @@ const ProfilePreview: React.FC<ProfilePreviewProps> = ({ }; //With @ sign if on search screen. - const usernameToDisplay = !isComment ? `@` + username : username; + const usernameToDisplay = !isComment ? '@' + username : username; const usernameStyle = isComment ? styles.commentUsername : styles.searchUsername; |