diff --git a/client/src/components/intro/intro.rs b/client/src/components/intro/intro.rs index 354b19d..5f51ba7 100644 --- a/client/src/components/intro/intro.rs +++ b/client/src/components/intro/intro.rs @@ -118,14 +118,4 @@ impl IntroState { pub fn previous_option(&mut self) { self.selected_option = if self.selected_option == 0 { 2 } else { self.selected_option - 1 }; } - - pub fn handle_selection(&self, app_state: &mut crate::state::state::AppState) { - match self.selected_option { - 0 => { /* Continue logic */ } - 1 => {} - 2 => {} - _ => {} - } - } - }