Skip to content

Commit a7dd6c6

Browse files
authored
Merge pull request #1000 from AppFlowy-IO/fix/005_warnings
chore: remove unuse code
2 parents 9bc2bc8 + 3c77899 commit a7dd6c6

File tree

1 file changed

+0
-21
lines changed

1 file changed

+0
-21
lines changed

frontend/app_flowy/lib/plugins/board/presentation/card/board_select_option_cell.dart

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -87,24 +87,3 @@ class _BoardSelectOptionCellState extends State<BoardSelectOptionCell> {
8787
super.dispose();
8888
}
8989
}
90-
91-
class _SelectOptionDialog extends StatelessWidget {
92-
final GridSelectOptionCellController _controller;
93-
const _SelectOptionDialog({
94-
Key? key,
95-
required IGridCellController controller,
96-
}) : _controller = controller as GridSelectOptionCellController,
97-
super(key: key);
98-
99-
@override
100-
Widget build(BuildContext context) {
101-
return SizedBox(
102-
child: InkWell(onTap: () {
103-
SelectOptionCellEditor.show(
104-
context: context,
105-
cellController: _controller,
106-
);
107-
}),
108-
);
109-
}
110-
}

0 commit comments

Comments
 (0)