From f44f70168f8e4447e3cf4bba2b4e33dfe4efe7f8 Mon Sep 17 00:00:00 2001
From: sabith-tu <95301637+sabith-tu@users.noreply.github.com>
Date: Mon, 20 Nov 2023 20:46:15 +0530
Subject: [PATCH] style: changing profile screen title (#2814)
---
web/components/profile/navbar.tsx | 2 +-
web/pages/[workspaceSlug]/profile/[userId]/index.tsx | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/web/components/profile/navbar.tsx b/web/components/profile/navbar.tsx
index d6d31bd19..7a6128190 100644
--- a/web/components/profile/navbar.tsx
+++ b/web/components/profile/navbar.tsx
@@ -14,7 +14,7 @@ type Props = {
const viewerTabs = [
{
route: "",
- label: "Overview",
+ label: "Summary",
selected: "/[workspaceSlug]/profile/[userId]",
},
];
diff --git a/web/pages/[workspaceSlug]/profile/[userId]/index.tsx b/web/pages/[workspaceSlug]/profile/[userId]/index.tsx
index e5b70b1db..f345f8867 100644
--- a/web/pages/[workspaceSlug]/profile/[userId]/index.tsx
+++ b/web/pages/[workspaceSlug]/profile/[userId]/index.tsx
@@ -56,7 +56,7 @@ const ProfileOverviewPage: NextPageWithLayout = () => {
ProfileOverviewPage.getLayout = function getLayout(page: ReactElement) {
return (
- }>
+ }>
{page}
);