Remove useless verbs in web api urls

This commit is contained in:
Greg Burri 2025-03-31 21:24:20 +02:00
parent 559ed139aa
commit 315626b3ed
7 changed files with 100 additions and 94 deletions

View file

@ -176,8 +176,7 @@ pub fn setup(
date,
remove_ingredients_from_shopping_list,
};
let _ =
request::delete::<(), _>("calendar/remove_scheduled_recipe", body).await;
let _ = request::delete::<(), _>("calendar/scheduled_recipe", body).await;
window().location().reload().unwrap();
}
});