From 07b70da976720192e999bb6558d2074761319465 Mon Sep 17 00:00:00 2001 From: konstantiniiv Date: Fri, 17 Jan 2025 16:49:30 +0100 Subject: [PATCH] DROID-3246 toast disabled --- .../anytypeio/anytype/presentation/editor/EditorViewModel.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/presentation/src/main/java/com/anytypeio/anytype/presentation/editor/EditorViewModel.kt b/presentation/src/main/java/com/anytypeio/anytype/presentation/editor/EditorViewModel.kt index 293d37878c..bafa2f20dd 100644 --- a/presentation/src/main/java/com/anytypeio/anytype/presentation/editor/EditorViewModel.kt +++ b/presentation/src/main/java/com/anytypeio/anytype/presentation/editor/EditorViewModel.kt @@ -7581,7 +7581,7 @@ class EditorViewModel( .run(Unit) .collect { event -> if (event.any { it is FileLimitsEvent.FileLimitReached }) { - _toasts.emit("You exceeded file limit upload") + //_toasts.emit("You exceeded file limit upload") } } }