Skip to content

Commit d630ba0

Browse files
authored
feat(GAT-9287): copy update (#1586)
1 parent e4e964f commit d630ba0

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/config/messages/en.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2027,7 +2027,7 @@
20272027
"bulletCohortDiscovery": "Use the Cohort Discovery advanced search tool",
20282028
"preferredAccessTitle": "<bold>Preferred Access</bold> (including <bold>Cohort Discovery</bold>)",
20292029
"preferredAccessText": "You can sign in using one of the supported sign-in options below to access the full platform experience, including Cohort Discovery and all associated features.",
2030-
"notPreferredAccessTitle": "<bold>Not Preferred Access</bold>",
2030+
"notPreferredAccessTitle": "<bold>Non-preferred Access</bold>",
20312031
"notPreferredAccessText": "You can sign in using one of the supported sign-in options below to access the core Gateway features but <highlight>excludes Cohort Discovery</highlight> and all associated features.",
20322032
"suggestAnother": "Suggest another identity provider",
20332033
"selectAnother": "Select another provider"

src/modules/ProviderLinks/ProviderLinks.test.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ describe("ProviderLinks", () => {
2121
expect(screen.getByTitle("your institute")).toBeInTheDocument();
2222
});
2323

24-
it("should render preferred and not preferred access sections", async () => {
24+
it("should render preferred and non preferred access sections", async () => {
2525
render(
2626
<ProviderLinks showInstitution={() => console.log("show inst")} />
2727
);
@@ -32,7 +32,7 @@ describe("ProviderLinks", () => {
3232
})
3333
).toBeInTheDocument();
3434
expect(
35-
screen.getByRole("heading", { name: "Not Preferred Access" })
35+
screen.getByRole("heading", { name: "Non-preferred Access" })
3636
).toBeInTheDocument();
3737
});
3838
});

src/modules/ProviderLinks/__snapshots__/ProviderLinks.test.tsx.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ exports[`ProviderLinks should match snapshot 1`] = `
9898
<span
9999
class="MuiBox-root mui-style-1w7ybou"
100100
>
101-
Not Preferred Access
101+
Non-preferred Access
102102
</span>
103103
</h4>
104104
<p

0 commit comments

Comments
 (0)