diff --git a/packages/web/src/pages/chat-page/components/ChatBlastHeader.tsx b/packages/web/src/pages/chat-page/components/ChatBlastHeader.tsx index d627cbae7b0..26fcd6a9f04 100644 --- a/packages/web/src/pages/chat-page/components/ChatBlastHeader.tsx +++ b/packages/web/src/pages/chat-page/components/ChatBlastHeader.tsx @@ -37,15 +37,16 @@ export const ChatBlastHeader = ({ chat }: { chat: ChatBlast }) => { ) : null} - + {chatBlastSecondaryTitle} - + {contentTitle} diff --git a/packages/web/src/pages/chat-page/components/ChatListBlastItem.tsx b/packages/web/src/pages/chat-page/components/ChatListBlastItem.tsx index 2fc4b16333d..6fd485e4f04 100644 --- a/packages/web/src/pages/chat-page/components/ChatListBlastItem.tsx +++ b/packages/web/src/pages/chat-page/components/ChatListBlastItem.tsx @@ -2,7 +2,7 @@ import { useCallback } from 'react' import { useChatBlastAudienceContent } from '@audius/common/hooks' import { formatCount } from '@audius/common/utils' -import { Flex, IconTowerBroadcast, IconUser, Text } from '@audius/harmony' +import { Box, Flex, IconTowerBroadcast, IconUser, Text } from '@audius/harmony' import { ChatBlast } from '@audius/sdk' import cn from 'classnames' @@ -41,21 +41,15 @@ export const ChatListBlastItem = (props: ChatListBlastItemProps) => { onClick={handleClick} className={cn(styles.root, { [styles.active]: isCurrentChat })} > - + - - {chatBlastTitle} - + + + {chatBlastTitle} + + {contentTitle ? ( - + {contentTitle} ) : null}