diff --git a/packages/desktop/src/components/lines/lineRow.tsx/index.tsx b/packages/desktop/src/components/lines/lineRow.tsx/index.tsx
index b6223cb..1d54527 100644
--- a/packages/desktop/src/components/lines/lineRow.tsx/index.tsx
+++ b/packages/desktop/src/components/lines/lineRow.tsx/index.tsx
@@ -52,16 +52,12 @@ export default function LineRow({
* TODO: slowly add to this and fix based on added features
* */
const renderActivityIcon = useMemo(() => {
- if (isUserTunedIn)
- return (
-
-
-
- );
-
// if there is someone or me broadcasting here
if (masterLineData.currentBroadcastersUserIds?.length > 0)
- return ;
+ return ;
+
+ if (isUserTunedIn)
+ return ;
// if there is new activity blocks for me
if (masterLineData.currentUserMember.lastVisitDate)