💄 Optimzations

This commit is contained in:
2025-11-17 01:23:27 +08:00
parent d4f95bbbf4
commit 2445d8adf8
2 changed files with 39 additions and 47 deletions

View File

@@ -685,12 +685,7 @@ class ComposeLogic {
final hasAttachments = state.attachments.value.isNotEmpty;
if (!hasContent && !hasAttachments) {
// Show error message if context is mounted
if (context.mounted) {
ScaffoldMessenger.of(
context,
).showSnackBar(SnackBar(content: Text('postContentEmpty')));
}
showErrorAlert('postContentEmpty'.tr());
throw Exception('Post content is empty'); // Don't submit empty posts
}