diff --git a/components/interactive-elements.html b/components/interactive-elements.html
index 95cf71d..e923dcf 100644
--- a/components/interactive-elements.html
+++ b/components/interactive-elements.html
@@ -704,11 +704,6 @@
if (isActive && !hasSelectedOption) {
options[0].setAttribute('aria-checked', 'true');
}
- if (!isActive) {
- options.forEach((option) => {
- option.setAttribute('aria-checked', 'false');
- });
- }
options.forEach((option) => {
option.classList.toggle('sg-checkbox-field--inactive-selectable', !isActive);