diff --git a/llama-index-core/llama_index/core/node_parser/text/sentence.py b/llama-index-core/llama_index/core/node_parser/text/sentence.py
index 30e08b120ae0799fa81cb102b9a7fc31bcf367fe..550e0d146865ec18c1f72f4c43ab4e723715e222 100644
--- a/llama-index-core/llama_index/core/node_parser/text/sentence.py
+++ b/llama-index-core/llama_index/core/node_parser/text/sentence.py
@@ -306,7 +306,6 @@ class SentenceSplitter(MetadataAwareTextSplitter):
             splits = split_fn(text)
             if len(splits) > 1:
                 return splits, True
-                break
 
         for split_fn in self._sub_sentence_split_fns:
             splits = split_fn(text)