intro page working properly well

This commit is contained in:
filipriec
2025-03-21 23:07:10 +01:00
parent 1b0aaa55c9
commit c592dfc7f5
6 changed files with 54 additions and 19 deletions

View File

@@ -6,7 +6,7 @@ use common::proto::multieko2::table_definition::ProfileTreeResponse;
pub struct UiState {
pub show_sidebar: bool,
pub is_saved: bool,
// pub show_intro: bool,
pub show_intro: bool,
}
pub struct AppState {
@@ -49,6 +49,7 @@ impl Default for UiState {
Self {
show_sidebar: true,
is_saved: false,
show_intro: true,
}
}
}