From 9562a80908ca646b8bc93a47a4c2a2f67ae92507 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Mon, 4 Dec 2023 11:59:59 -0800 Subject: [PATCH] Allow posts with just an external link (#2079) --- src/view/com/composer/Composer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/view/com/composer/Composer.tsx b/src/view/com/composer/Composer.tsx index 6f058d39..7336f3b9 100644 --- a/src/view/com/composer/Composer.tsx +++ b/src/view/com/composer/Composer.tsx @@ -201,7 +201,7 @@ export const ComposePost = observer(function ComposePost({ setError('') - if (richtext.text.trim().length === 0 && gallery.isEmpty) { + if (richtext.text.trim().length === 0 && gallery.isEmpty && !extLink) { setError('Did you want to say anything?') return }