From 6c22a3841b43cc7d996c85595a9079ebc68d8cdf Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Tue, 6 Dec 2022 17:10:16 -0600 Subject: [PATCH] ChatPaneHeader: i18n title --- app/soapbox/features/chats/components/chat-pane/chat-pane.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/soapbox/features/chats/components/chat-pane/chat-pane.tsx b/app/soapbox/features/chats/components/chat-pane/chat-pane.tsx index 97fd3db0e..ad0dd8e9e 100644 --- a/app/soapbox/features/chats/components/chat-pane/chat-pane.tsx +++ b/app/soapbox/features/chats/components/chat-pane/chat-pane.tsx @@ -1,4 +1,5 @@ import React, { useState } from 'react'; +import { FormattedMessage } from 'react-intl'; import { Stack } from 'soapbox/components/ui'; import { ChatWidgetScreens, useChatContext } from 'soapbox/contexts/chat-context'; @@ -91,7 +92,7 @@ const ChatPane = () => { return ( } unreadCount={unreadChatsCount} isOpen={isOpen} onToggle={toggleChatPane}