Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export default function GuestAccessTokenInvalidPage({
)
}
const repositoryNamesHTML = makeRepositoryNamesHTML(repositories)
const html = `It was not possible to obtain access to all the projects: ${repositoryNamesHTML}.`
const html = `It was not possible to obtain access to ${repositoryNamesHTML}.`
return (
<InvalidSessionPage title="Could not obtain access">
<div dangerouslySetInnerHTML={{ __html: html }} />
Expand Down
2 changes: 1 addition & 1 deletion src/features/auth/view/client/SessionBarrier.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export default function SessionBarrier({
case SessionValidity.OUTSIDE_GITHUB_ORGANIZATION:
case SessionValidity.GITHUB_APP_BLOCKED:
return (
<InvalidSessionPage title={`Your account is not part of the ${siteName} organization`}>
<InvalidSessionPage title={`Your account is not part of the ${organizationName} organization`}>
Access to {siteName} requires that your account is an active member of the <strong>{organizationName}</strong> organization on GitHub.
</InvalidSessionPage>
)
Expand Down