From da3ed41104e2468af2d730e777525336bd4e7e9b Mon Sep 17 00:00:00 2001 From: joeserhtf Date: Fri, 20 Sep 2024 15:23:41 -0300 Subject: [PATCH] Feat: Removing check not allowing spell check on web (#2252) --- lib/src/editor/widgets/text/text_line.dart | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/src/editor/widgets/text/text_line.dart b/lib/src/editor/widgets/text/text_line.dart index b0c42f4b8..43cab0930 100644 --- a/lib/src/editor/widgets/text/text_line.dart +++ b/lib/src/editor/widgets/text/text_line.dart @@ -481,7 +481,6 @@ class _TextLineState extends State { !widget.readOnly && !widget.line.style.attributes.containsKey('code-block') && !widget.line.style.attributes.containsKey('placeholder') && - !kIsWeb && !isPlaceholderLine) { final service = SpellCheckerServiceProvider.instance; final spellcheckedSpans = service.checkSpelling(textNode.value);