File tree Expand file tree Collapse file tree 1 file changed +3
-9
lines changed
frontend/app_flowy/lib/plugins/grid/presentation/widgets/row Expand file tree Collapse file tree 1 file changed +3
-9
lines changed Original file line number Diff line number Diff line change 11import 'package:app_flowy/plugins/grid/application/row/row_action_sheet_bloc.dart' ;
2- import 'package:app_flowy/workspace/presentation/widgets/dialogs.dart' ;
32import 'package:easy_localization/easy_localization.dart' ;
43import 'package:app_flowy/generated/locale_keys.g.dart' ;
54import 'package:flowy_infra/image.dart' ;
@@ -151,14 +150,9 @@ extension _RowActionExtension on _RowAction {
151150 .add (const RowActionSheetEvent .duplicateRow ());
152151 break ;
153152 case _RowAction .delete:
154- FlowyAlertDialog (
155- title: LocaleKeys .grid_field_deleteFieldPromptMessage.tr (),
156- confirm: () {
157- context
158- .read <RowActionSheetBloc >()
159- .add (const RowActionSheetEvent .deleteRow ());
160- },
161- ).show (context);
153+ context
154+ .read <RowActionSheetBloc >()
155+ .add (const RowActionSheetEvent .deleteRow ());
162156
163157 break ;
164158 }
You can’t perform that action at this time.
0 commit comments