···3737/// The different regions of the application that the user can
3838/// be interacting with. Think of these kind of like the highest class of
3939/// components.
4040-#[derive(
4141- Default, Debug, Copy, Clone, PartialEq, Eq, Hash, Serialize, Deserialize, EnumIter, Display,
4242-)]
4040+#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash, Serialize, Deserialize, EnumIter, Display)]
4341pub enum Page {
4444- #[default]
4542 Zk,
4643 Todo(TodoRegion),
4444+}
4545+4646+impl Default for Page {
4747+ fn default() -> Self {
4848+ Self::Todo(TodoRegion::Explorer)
4949+ }
4750}
48514952impl App {
···6565 /// Create a new `Task`
6666 NewTask,
67676868+ /// Edit the name of a `Task` or a `Group`.
6969+ /// Only works with the inspector
7070+ EditName,
7171+6872 /// this is fucking temporary
6973 Helix {
7074 path: PathBuf,