From 92045a4e67366d562b02a11247c6963d67dd95e1 Mon Sep 17 00:00:00 2001 From: filipriec Date: Wed, 26 Mar 2025 00:16:38 +0100 Subject: [PATCH] unused stuff --- client/src/components/intro/intro.rs | 10 ---------- 1 file changed, 10 deletions(-) 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 => {} - _ => {} - } - } - }