From fa87fa3c5f01748065d86f802c529c8494c12900 Mon Sep 17 00:00:00 2001 From: Shekar Siri Date: Tue, 23 Aug 2022 17:36:22 +0200 Subject: [PATCH] fix(ui) - team page title --- frontend/app/components/Client/Users/UsersView.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/app/components/Client/Users/UsersView.tsx b/frontend/app/components/Client/Users/UsersView.tsx index cc393d3d5..7948837ed 100644 --- a/frontend/app/components/Client/Users/UsersView.tsx +++ b/frontend/app/components/Client/Users/UsersView.tsx @@ -8,6 +8,7 @@ import { useModal } from 'App/components/Modal'; import UserForm from './components/UserForm'; import { connect } from 'react-redux'; import AddUserButton from './components/AddUserButton'; +import withPageTitle from 'HOCs/withPageTitle'; interface Props { isOnboarding?: boolean; @@ -57,4 +58,4 @@ function UsersView(props: Props) { export default connect((state: any) => ({ account: state.getIn(['user', 'account']), isEnterprise: state.getIn(['user', 'account', 'edition']) === 'ee', -}))(UsersView); +}))(withPageTitle('Team - OpenReplay Preferences')(UsersView));