diff --git a/frontend/src/conversation/SharedConversation.tsx b/frontend/src/conversation/SharedConversation.tsx
index c4cb17fb6..5ab1d639c 100644
--- a/frontend/src/conversation/SharedConversation.tsx
+++ b/frontend/src/conversation/SharedConversation.tsx
@@ -26,6 +26,7 @@ import {
selectQueries,
} from './sharedConversationSlice';
import { useSelector } from 'react-redux';
+import { Helmet } from 'react-helmet';
export const SharedConversation = () => {
const navigate = useNavigate();
@@ -176,94 +177,111 @@ export const SharedConversation = () => {
}, []);
return (
-
-
-
-
-
- {title}
-
-
- {t('sharedConv.subtitle')}{' '}
-
- DocsGPT
-
-
-
- {date}
-
-
-
- {queries?.map((query, index) => {
- return (
-
-
+ <>
+
+ {`DocsGPT | ${title}`}
+
+
+
+
+
+
+
+
+
+
+
+
+ {title}
+
+
+ {t('sharedConv.subtitle')}{' '}
+
+ DocsGPT
+
+
+
+ {date}
+
+
+
+ {queries?.map((query, index) => {
+ return (
+
+
- {prepResponseView(query, index)}
-
- );
- })}
+ {prepResponseView(query, index)}
+
+ );
+ })}
+
-
-
- {apiKey ? (
-
-
{
- if (e.key === 'Enter' && !e.shiftKey) {
- e.preventDefault();
- handleQuestionSubmission();
- }
- }}
- >
- {status === 'loading' ? (
-
- ) : (
-
+
+ {apiKey ? (
+
+
{
+ if (e.key === 'Enter' && !e.shiftKey) {
+ e.preventDefault();
+ handleQuestionSubmission();
+ }
+ }}
+ >
+ {status === 'loading' ? (
-
- )}
-
- ) : (
-
- )}
-
- {t('sharedConv.meta')}
-
+ ) : (
+
+
+
+ )}
+
+ ) : (
+
+ )}
+
+ {t('sharedConv.meta')}
+
+
-
+ >
);
};