@@ -23,7 +23,6 @@ import { openAuthorizeWindow } from "../provider-utils";
23
23
import { SelectAccountPayload } from "@gitpod/gitpod-protocol/lib/auth" ;
24
24
import { SelectAccountModal } from "../settings/SelectAccountModal" ;
25
25
import PrebuildLogs from "../components/PrebuildLogs" ;
26
- import CodeText from "../components/CodeText" ;
27
26
import FeedbackComponent from "../feedback-form/FeedbackComponent" ;
28
27
import { isGitpodIo } from "../utils" ;
29
28
import { BillingAccountSelector } from "../components/BillingAccountSelector" ;
@@ -480,7 +479,7 @@ function RepositoryNotFoundView(p: { error: StartWorkspaceError }) {
480
479
< div className = "mt-2 flex flex-col space-y-8" >
481
480
< p className = "text-base text-gray-400 w-96" >
482
481
Permission to access private repositories has been granted. If you are a member of{ " " }
483
- < CodeText > { owner } </ CodeText > , please try to request access for Gitpod.
482
+ < code > { owner } </ code > , please try to request access for Gitpod.
484
483
</ p >
485
484
< a className = "mx-auto" href = { authorizeURL } >
486
485
< button > Request Access for Gitpod</ button >
@@ -494,7 +493,7 @@ function RepositoryNotFoundView(p: { error: StartWorkspaceError }) {
494
493
< div className = "mt-2 flex flex-col space-y-8" >
495
494
< p className = "text-base text-gray-400 w-96" >
496
495
Your access token was updated recently. Please try again if the repository exists and Gitpod was
497
- approved for < CodeText > { owner } </ CodeText > .
496
+ approved for < code > { owner } </ code > .
498
497
</ p >
499
498
< a className = "mx-auto" href = { authorizeURL } >
500
499
< button > Try Again</ button >
@@ -507,7 +506,7 @@ function RepositoryNotFoundView(p: { error: StartWorkspaceError }) {
507
506
return (
508
507
< StartPage phase = { StartPhase . Checking } error = { p . error } >
509
508
< p className = "text-base text-gray-400 mt-2" >
510
- < CodeText > { repoFullName } </ CodeText >
509
+ < code > { repoFullName } </ code >
511
510
</ p >
512
511
{ statusMessage }
513
512
{ p . error && isGitpodIo ( ) && (
0 commit comments