diff --git a/pkg/interface/src/views/apps/profile/components/Profile.tsx b/pkg/interface/src/views/apps/profile/components/Profile.tsx
index ab0801d859..fb7ab4835b 100644
--- a/pkg/interface/src/views/apps/profile/components/Profile.tsx
+++ b/pkg/interface/src/views/apps/profile/components/Profile.tsx
@@ -112,6 +112,7 @@ export function ProfileStatus(props: any): ReactElement {
       display='inline-block'
       verticalAlign='middle'
       color='gray'
+      title={contact?.status ?? ''}
     >
       {contact?.status ?? ''}
     </RichText>
diff --git a/pkg/interface/src/views/components/ProfileOverlay.tsx b/pkg/interface/src/views/components/ProfileOverlay.tsx
index 9130affa85..6d653b8aef 100644
--- a/pkg/interface/src/views/components/ProfileOverlay.tsx
+++ b/pkg/interface/src/views/components/ProfileOverlay.tsx
@@ -176,8 +176,9 @@ const ProfileOverlay = (props: ProfileOverlayProps) => {
             marginBottom='0'
             disableRemoteContent
             gray
+            title={contact?.status ?? ''}
           >
-            {contact?.status ? contact.status : ''}
+            {contact?.status ?? ''}
           </RichText>
         )}
       </Col>