Fix: check that beer was added

This commit is contained in:
Filip Rojek 2024-05-12 17:47:06 +02:00
parent 674ee65c29
commit 630da41536

View File

@ -46,8 +46,8 @@ export default function BeerAdd() {
});
const res = await req.json();
if (res.success & res.new_beer_id) {
window.location.href = `/beer/${res.new_beer_id}`;
if (res.code == 201 && res.data._id) {
window.location.href = `/beer/${res.data._id}`;
} else {
alert(
"Beer was not added successfully. Please check your data and try again.",