From 8c85180b0751e7f0fb0e9ae417e0b1835ab531c6 Mon Sep 17 00:00:00 2001
From: TJ Egan <tw15egan@gmail.com>
Date: Thu, 29 Sep 2022 11:59:42 -0400
Subject: [PATCH] fix(DataTable): backport aria-label fix to v10 (#12106)

Co-authored-by: Josefina Mancilla <32556167+jnm2377@users.noreply.github.com>
---
 packages/react/src/components/InlineCheckbox/InlineCheckbox.js | 1 -
 1 file changed, 1 deletion(-)

diff --git a/packages/react/src/components/InlineCheckbox/InlineCheckbox.js b/packages/react/src/components/InlineCheckbox/InlineCheckbox.js
index d956dc7f520e..90c60cb16da8 100644
--- a/packages/react/src/components/InlineCheckbox/InlineCheckbox.js
+++ b/packages/react/src/components/InlineCheckbox/InlineCheckbox.js
@@ -46,7 +46,6 @@ const InlineCheckbox = React.forwardRef(function InlineCheckbox(
 
   if (indeterminate) {
     inputProps.checked = false;
-    inputProps['aria-checked'] = 'mixed';
   }
 
   useEffect(() => {