diff --git a/src/tui/app/machine/fetch_state.rs b/src/tui/app/machine/fetch_state.rs index 7b8ef79..14cd586 100644 --- a/src/tui/app/machine/fetch_state.rs +++ b/src/tui/app/machine/fetch_state.rs @@ -165,7 +165,7 @@ impl AppMachine { MbReturn::Match(next_match) => { AppMachine::match_state(inner, MatchState::new(next_match, fetch)).into() } - _ => unimplemented!(), + MbReturn::Fetch(_) => Self::app_fetch_next(inner, fetch), } }