Skip to content

Commit

Permalink
DEVPROD-11534 remove team from help text in project create modal (#522)
Browse files Browse the repository at this point in the history
  • Loading branch information
ablack12 authored Nov 26, 2024
1 parent f885501 commit 67f9a71
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ describe("copyProjectField", () => {
// Check S3 creds checkbox.
const requestS3Creds = screen.getByDataCy("request-s3-creds");
const requestS3CredLabel = screen.getByText(
"Open a JIRA ticket to request an S3 Bucket from the Build team",
"Open a JIRA ticket to request an S3 Bucket",
);
expect(requestS3Creds).not.toBeChecked();
await user.click(requestS3CredLabel); // LeafyGreen checkbox has pointer-events: none so click on the label instead.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ describe("createProjectField", () => {
// Check S3 creds checkbox.
const requestS3Creds = screen.getByDataCy("request-s3-creds");
const requestS3CredLabel = screen.getByText(
"Open a JIRA ticket to request an S3 Bucket from the Build team",
"Open a JIRA ticket to request an S3 Bucket",
);
expect(requestS3Creds).not.toBeChecked();
await user.click(requestS3CredLabel); // LeafyGreen checkbox has pointer-events: none so click on the label instead.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export const performanceTooling = {
export const requestS3Creds = {
schema: {
type: "boolean" as "boolean",
title: "Open a JIRA ticket to request an S3 Bucket from the Build team",
title: "Open a JIRA ticket to request an S3 Bucket",
default: false,
},
uiSchema: {
Expand Down

0 comments on commit 67f9a71

Please sign in to comment.