diff --git a/Threaded/Components/DynamicTextEditor.swift b/Threaded/Components/DynamicTextEditor.swift index 6ab6953..b75e56d 100644 --- a/Threaded/Components/DynamicTextEditor.swift +++ b/Threaded/Components/DynamicTextEditor.swift @@ -26,7 +26,7 @@ public struct DynamicTextEditor: View { { _text = text _isEmpty = Binding( - get: { text.wrappedValue.string.isEmpty }, + get: { text.wrappedValue.length <= 0 || text.wrappedValue.string.isEmpty }, set: { _ in } )