From b5cb044f3857dcd896b302b4d4207d25c6434c6c Mon Sep 17 00:00:00 2001 From: raheemadamboev Date: Fri, 26 Jan 2024 09:55:51 +0500 Subject: [PATCH] [1.1.6] Refactored; Took 26 seconds --- .../todo/presentation/screen/todo/list/TodoListScreen.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/xyz/teamgravity/todo/presentation/screen/todo/list/TodoListScreen.kt b/app/src/main/java/xyz/teamgravity/todo/presentation/screen/todo/list/TodoListScreen.kt index 7bd758a..8a5560f 100644 --- a/app/src/main/java/xyz/teamgravity/todo/presentation/screen/todo/list/TodoListScreen.kt +++ b/app/src/main/java/xyz/teamgravity/todo/presentation/screen/todo/list/TodoListScreen.kt @@ -56,7 +56,7 @@ fun TodoListScreen( val result = snackbar.showSnackbar( message = context.getString(R.string.deleted_successfully), actionLabel = context.getString(R.string.undo), - duration = SnackbarDuration.Long + duration = SnackbarDuration.Short ) if (result == SnackbarResult.ActionPerformed) viewmodel.onUndoDeletedTodo() }