Skip to content
Snippets Groups Projects
Unverified Commit bc122755 authored by George Tsiolis's avatar George Tsiolis Committed by GitHub
Browse files

Update page titles (#18609)

parent 5efb011c
No related merge requests found
......@@ -25,7 +25,7 @@ export interface TabEntry {
export default function Header(p: HeaderProps) {
const location = useLocation();
useDocumentTitle(`${p.title} — Gitpod`);
useDocumentTitle(`${p.title}`);
return (
<div className="app-container border-gray-200 dark:border-gray-800">
<div className="flex pb-8 pt-6">
......
......@@ -26,7 +26,7 @@ type Props = {
onComplete: () => void;
};
const DedicatedSetup: FC<Props> = ({ onComplete }) => {
useDocumentTitle("Welcome - Gitpod");
useDocumentTitle("Welcome");
const currentOrg = useCurrentOrg();
const oidcClients = useOIDCClientsQuery();
......
......@@ -35,7 +35,7 @@ export default function JoinTeamPage() {
})();
}, [history, inviteId, orgInvalidator]);
useDocumentTitle("Joining Organization — Gitpod");
useDocumentTitle("Joining Organization");
return joinError ? <div className="mt-16 text-center text-gitpod-red">{String(joinError)}</div> : <></>;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment