浏览代码

refactor: remove useless popoverMutex from _AddOptionButton widget

Cyrine-benabid 2 年之前
父节点
当前提交
c7d8a0b7c3

+ 2 - 6
frontend/app_flowy/lib/plugins/grid/presentation/widgets/header/type_option/select_option.dart

@@ -52,7 +52,7 @@ class SelectOptionTypeOptionWidget extends StatelessWidget {
                 ),
               ),
             if (state.options.isEmpty && !state.isEditingOption)
-              _AddOptionButton(popoverMutex: popoverMutex),
+              const _AddOptionButton(),
             _OptionList(popoverMutex: popoverMutex)
           ];
 
@@ -231,11 +231,7 @@ class _OptionCellState extends State<_OptionCell> {
 }
 
 class _AddOptionButton extends StatelessWidget {
-  final PopoverMutex? popoverMutex;
-  const _AddOptionButton({
-    Key? key,
-    this.popoverMutex,
-  }) : super(key: key);
+  const _AddOptionButton({Key? key}) : super(key: key);
 
   @override
   Widget build(BuildContext context) {