feature/IO-3182-Phone-Number-Consent - Checkpoint

This commit is contained in:
Dave Richer
2025-05-28 12:26:48 -04:00
parent 2e95fa25af
commit da7e637183

View File

@@ -25,14 +25,14 @@ function OwnerDetailFormContainer({ owner, refetch }) {
}); });
console.log(result); console.log(result);
if (result.errors) { if (result.errors) {
notification["error"]({ notification.error({
message: t("owners.errors.deleting", { message: t("owners.errors.deleting", {
error: JSON.stringify(result.errors) error: JSON.stringify(result.errors)
}) })
}); });
setLoading(false); setLoading(false);
} else { } else {
notification["success"]({ notification.success({
message: t("owners.successes.delete") message: t("owners.successes.delete")
}); });
setLoading(false); setLoading(false);
@@ -47,7 +47,7 @@ function OwnerDetailFormContainer({ owner, refetch }) {
}); });
if (!!result.errors) { if (!!result.errors) {
notification["error"]({ notification.error({
message: t("owners.errors.saving", { message: t("owners.errors.saving", {
error: JSON.stringify(result.errors) error: JSON.stringify(result.errors)
}) })
@@ -56,7 +56,7 @@ function OwnerDetailFormContainer({ owner, refetch }) {
return; return;
} }
notification["success"]({ notification.success({
message: t("owners.successes.save") message: t("owners.successes.save")
}); });