You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After checking if matching_series.is_none() { continue; }, the code does matching_series.unwrap(). Should use let Some(series_name) = matching_series else { ... }.
After checking
if matching_series.is_none() { continue; }, the code doesmatching_series.unwrap(). Should uselet Some(series_name) = matching_series else { ... }.File:
sdk/src/repositories/project_prompt.rs:314-319