aboutsummaryrefslogtreecommitdiff
path: root/src/components/header.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/header.rs')
-rw-r--r--src/components/header.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/components/header.rs b/src/components/header.rs
index 7977a5b..f41d6a1 100644
--- a/src/components/header.rs
+++ b/src/components/header.rs
@@ -140,7 +140,9 @@ impl SimpleComponent for Header {
if index < self.available_stage_types.len()
&& let Some(stage_type) = self.available_stage_types.get(index)
{
- let _ = sender.output(Action::StageTypeSelected(stage_type.clone()));
+ sender
+ .output(Action::StageTypeSelected(stage_type.clone()))
+ .ok();
}
}
}