Merged in feature/IO-3499-React-19 (pull request #2818)

feature/IO-3499-React-19: Bug Fixes / Checkpoint
This commit is contained in:
Dave Richer
2026-01-14 03:32:29 +00:00
171 changed files with 1128 additions and 954 deletions

View File

@@ -50,12 +50,12 @@ export default function ShopInfoContainer() {
variables: { id: data.bodyshops[0].id, shop: values }
})
.then(() => {
notification["success"]({ message: t("bodyshop.successes.save") });
notification.success({ title: t("bodyshop.successes.save") });
refetch().then(() => form.resetFields());
})
.catch((error) => {
notification["error"]({
message: t("bodyshop.errors.saving", { message: error })
notification.error({
title: t("bodyshop.errors.saving", { message: error })
});
});
setSaveLoading(false);