diff --git a/core/modules/ckeditor5/src/Plugin/Editor/CKEditor5.php b/core/modules/ckeditor5/src/Plugin/Editor/CKEditor5.php
index 03905f04f4958523e2a2b6a1abc33f5e12320cbf..b12841651f81793338b8b4fe15598bca92e19aea 100644
--- a/core/modules/ckeditor5/src/Plugin/Editor/CKEditor5.php
+++ b/core/modules/ckeditor5/src/Plugin/Editor/CKEditor5.php
@@ -524,14 +524,6 @@ public static function assessActiveTextEditorAfterBuild(array $element, FormStat
     $form_state->set('ckeditor5_is_active', $already_using_ckeditor5);
     $form_state->set('ckeditor5_is_selected', $form_state->getValue(['editor', 'editor']) === 'ckeditor5');
 
-    // Disable inline form errors when using CKEditor 5 because it prevents
-    // useful error messages from vertical tabs from being visible to the user.
-    // @todo Remove this workaround in
-    //   https://www.drupal.org/project/drupal/issues/3263668
-    if ($form_state->get('ckeditor5_is_selected')) {
-      $element['#disable_inline_form_errors'] = TRUE;
-    }
-
     return $element;
   }