Remove unused test screen

This commit is contained in:
zontreck 2023-12-25 16:52:32 -07:00
parent c15f0e7986
commit 70fc9f740a
2 changed files with 1 additions and 32 deletions

View file

@ -12,10 +12,7 @@ class MainApp extends StatelessWidget {
Widget build(BuildContext context) {
return MaterialApp(
theme: ThemeData.dark(),
routes: {
"/": (context) => const Editor(),
"/select_file": (context) => const FileSelectionScreen()
},
routes: {"/": (context) => const Editor()},
);
}
}