Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Remove repository from GUT settings page header #2823

Merged
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 @@ -14,9 +14,7 @@ function OrgUploadToken() {
return (
<div className="flex flex-col gap-4 lg:w-3/4">
<div className="flex gap-1">
<h1 className="text-lg font-semibold">
Global repository upload token
</h1>
<h1 className="text-lg font-semibold">Global upload token</h1>
<div className="mt-2 text-xs">
<A to={{ pageName: 'orgUploadTokenDoc' }}>learn more</A>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ describe('OrgUploadToken', () => {
it('renders title', async () => {
render(<OrgUploadToken />, { wrapper })

const title = await screen.findByText(/Global repository upload token/)
const title = await screen.findByText(/Global upload token/)
expect(title).toBeInTheDocument()
})

Expand Down Expand Up @@ -237,7 +237,7 @@ describe('OrgUploadToken', () => {
await waitFor(() =>
expect(addNotification).toHaveBeenCalledWith({
type: 'success',
text: 'Global repository upload token generated.',
text: 'Global upload token generated.',
})
)
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default function useGenerateOrgUploadToken() {
} else {
addToast({
type: 'success',
text: 'Global repository upload token generated.',
text: 'Global upload token generated.',
})
}
},
Expand Down
Loading