From 72b3efa57935454ba04be0ee7750a5cc30d7c0bc Mon Sep 17 00:00:00 2001 From: Aji Slater Date: Fri, 26 Jun 2026 18:27:22 +0100 Subject: [PATCH] remove extra 'is' there was an extra 'is,' this commit removes it. --- site/component-library/loading-indicator.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/component-library/loading-indicator.md b/site/component-library/loading-indicator.md index fc04446..7cb0cfb 100644 --- a/site/component-library/loading-indicator.md +++ b/site/component-library/loading-indicator.md @@ -6,7 +6,7 @@ permalink: /component-library/loading-indicator.html ## Considerations -Loaders should use either the `alert` or `status` ARIA roles. Use the ["alert" role](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Reference/Roles/alert_role) when the user needs to know immediately when loading finishes: for example, when submitting a form. This role causes assistive technologies to announce all changes in an assertive way, and could be annoying. Use the ["status" role](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Reference/Roles/status_role) when the loading state is doesn't need immediate attention: for example, when loading extra page content. +Loaders should use either the `alert` or `status` ARIA roles. Use the ["alert" role](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Reference/Roles/alert_role) when the user needs to know immediately when loading finishes: for example, when submitting a form. This role causes assistive technologies to announce all changes in an assertive way, and could be annoying. Use the ["status" role](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Reference/Roles/status_role) when the loading state doesn't need immediate attention: for example, when loading extra page content. When loading content, use the `aria-busy="true"` attribute on the content's container. Change it to `false` when loading is complete.