Skip to content

Commit bc12275

Browse files
authored
Update page titles (#18609)
1 parent 5efb011 commit bc12275

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

components/dashboard/src/components/Header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export interface TabEntry {
2525

2626
export default function Header(p: HeaderProps) {
2727
const location = useLocation();
28-
useDocumentTitle(`${p.title} — Gitpod`);
28+
useDocumentTitle(`${p.title}`);
2929
return (
3030
<div className="app-container border-gray-200 dark:border-gray-800">
3131
<div className="flex pb-8 pt-6">

components/dashboard/src/dedicated-setup/DedicatedSetup.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ type Props = {
2626
onComplete: () => void;
2727
};
2828
const DedicatedSetup: FC<Props> = ({ onComplete }) => {
29-
useDocumentTitle("Welcome - Gitpod");
29+
useDocumentTitle("Welcome");
3030
const currentOrg = useCurrentOrg();
3131
const oidcClients = useOIDCClientsQuery();
3232

components/dashboard/src/teams/JoinTeam.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export default function JoinTeamPage() {
3535
})();
3636
}, [history, inviteId, orgInvalidator]);
3737

38-
useDocumentTitle("Joining Organization — Gitpod");
38+
useDocumentTitle("Joining Organization");
3939

4040
return joinError ? <div className="mt-16 text-center text-gitpod-red">{String(joinError)}</div> : <></>;
4141
}

0 commit comments

Comments
 (0)