From a1c4e148daed141a63bb73ccc143c1550a561203 Mon Sep 17 00:00:00 2001 From: Erick Date: Thu, 10 Mar 2022 09:00:33 -0300 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Alejandro Santiago --- lib/game/bloc/game_bloc.dart | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/game/bloc/game_bloc.dart b/lib/game/bloc/game_bloc.dart index 79e0e1df..a8b5c72b 100644 --- a/lib/game/bloc/game_bloc.dart +++ b/lib/game/bloc/game_bloc.dart @@ -44,9 +44,7 @@ class GameBloc extends Bloc { ); } else { emit( - state.copyWith( - activatedBonusLetters: newBonusLetters, - ), + state.copyWith(activatedBonusLetters: newBonusLetters), ); } }