aboutsummaryrefslogtreecommitdiff
path: root/lib/views/vote_view.dart
diff options
context:
space:
mode:
Diffstat (limited to 'lib/views/vote_view.dart')
-rw-r--r--lib/views/vote_view.dart3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/views/vote_view.dart b/lib/views/vote_view.dart
index 7de2d10..86ddc0b 100644
--- a/lib/views/vote_view.dart
+++ b/lib/views/vote_view.dart
@@ -12,14 +12,13 @@ class VoteView extends StatefulWidget {
_VoteViewState createState() => _VoteViewState();
}
-// TODO: Change from vote to schedule
class _VoteViewState extends State<VoteView> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: Text(AppLocalizations.of(context)!.category6)),
drawer: CustomDrawer(initalIndex: 3),
- body: NoContentError(), // TODO: IMPLEMENT: A voting system
+ body: NoContentError(),
);
}
}