Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prevent ZIO Chat Pop-up Window From Changing Page Titles #8422

Merged
merged 1 commit into from
Sep 18, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 0 additions & 11 deletions website/src/theme/Footer/ChatPrompt.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,6 @@ export const ChatPrompt = (props) => {
fullScreen,
} = props

useEffect(() => {
// Change the title when the component mounts
const original_title = document.title;
document.title = title;

// Optionally, you can revert the title when the component unmounts
return () => {
document.title = original_title;
};
}, []);

const greetings = welcomeMessages.map(m => ({
userType: "bot",
message: m,
Expand Down