style: changing profile screen title (#2814)

This commit is contained in:
sabith-tu 2023-11-20 20:46:15 +05:30 committed by GitHub
parent 3c10f00b04
commit f44f70168f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ type Props = {
const viewerTabs = [
{
route: "",
label: "Overview",
label: "Summary",
selected: "/[workspaceSlug]/profile/[userId]",
},
];

View File

@ -56,7 +56,7 @@ const ProfileOverviewPage: NextPageWithLayout = () => {
ProfileOverviewPage.getLayout = function getLayout(page: ReactElement) {
return (
<AppLayout header={<UserProfileHeader title="Overview" />}>
<AppLayout header={<UserProfileHeader title="Summary" />}>
<ProfileAuthWrapper>{page}</ProfileAuthWrapper>
</AppLayout>
);