diff --git a/cypress/integration/Radio.spec.ts b/cypress/integration/Radio.spec.ts
index dd5d0c1463..1ed7e99e28 100644
--- a/cypress/integration/Radio.spec.ts
+++ b/cypress/integration/Radio.spec.ts
@@ -14,26 +14,26 @@ describe('Radio', () => {
cy.checkA11y();
});
- context(`when the "Gluten Free" radio button is clicked`, () => {
+ context(`when the "Gluten free" radio button is clicked`, () => {
beforeEach(() => {
- cy.findByLabelText('Gluten Free').click();
+ cy.findByLabelText('Gluten free').click();
});
- it(`the "Gluten Free" radio button should be checked`, () => {
- cy.findByLabelText('Gluten Free').should('be.checked');
+ it(`the "Gluten free" radio button should be checked`, () => {
+ cy.findByLabelText('Gluten free').should('be.checked');
});
});
context(
- `when clicking the "Gluten Free" radio button and then clicking the "Thin" radio button`,
+ `when clicking the "Gluten free" radio button and then clicking the "Thin" radio button`,
() => {
beforeEach(() => {
- cy.findByLabelText('Gluten Free').click();
+ cy.findByLabelText('Gluten free').click();
cy.findByLabelText('Thin').click();
});
- it(`the "Gluten Free" radio button should not be checked`, () => {
- cy.findByLabelText('Gluten Free').should('not.be.checked');
+ it(`the "Gluten free" radio button should not be checked`, () => {
+ cy.findByLabelText('Gluten free').should('not.be.checked');
});
it(`the "Thin" radio button should be checked`, () => {
@@ -53,8 +53,8 @@ describe('Radio', () => {
cy.checkA11y();
});
- it(`the "Gluten Free (Sold Out)" radio button should be disabled`, () => {
- cy.findByLabelText('Gluten Free (Sold Out)').should('be.disabled');
+ it(`the "Gluten free (sold out)" radio button should be disabled`, () => {
+ cy.findByLabelText('Gluten free (sold out)').should('be.disabled');
});
});
});
diff --git a/modules/preview-react/breadcrumbs/stories/Breadcrumbs.stories.mdx b/modules/preview-react/breadcrumbs/stories/Breadcrumbs.stories.mdx
index a217e07087..098c96e448 100644
--- a/modules/preview-react/breadcrumbs/stories/Breadcrumbs.stories.mdx
+++ b/modules/preview-react/breadcrumbs/stories/Breadcrumbs.stories.mdx
@@ -48,7 +48,7 @@ you'll need to add `buttonAriaLabel` to `Breadcrumbs.CollapsibleList`.
-### Right-to-Left Example
+### Right-to-Left (RTL)
Breadcrumbs has bidirectional support out of the box. That means outside of setting the content
direction in your application's Canvas theme, you don't need to do anything else to make it work.
diff --git a/modules/preview-react/menu/stories/examples/Icons.tsx b/modules/preview-react/menu/stories/examples/Icons.tsx
index 049162cae3..e37324cdf9 100644
--- a/modules/preview-react/menu/stories/examples/Icons.tsx
+++ b/modules/preview-react/menu/stories/examples/Icons.tsx
@@ -10,7 +10,7 @@ import {Menu, MenuItem} from '@workday/canvas-kit-preview-react/menu';
export const Icons = () => {
return (
-