add server error message
This commit is contained in:
parent
3cfa29b5b5
commit
a05f541713
@ -252,6 +252,12 @@ const ResourceForm = ({
|
|||||||
}) => {
|
}) => {
|
||||||
return (
|
return (
|
||||||
<FormProvider {...methods}>
|
<FormProvider {...methods}>
|
||||||
|
{error ? (
|
||||||
|
<h1 className="text-center font-semibold text-red-600">
|
||||||
|
Error Updating Resource:{" "}
|
||||||
|
<span className="font-normal text-red-400">{error}</span>
|
||||||
|
</h1>
|
||||||
|
) : undefined}
|
||||||
<form className="mx-auto flex max-w-2xl flex-col flex-col-reverse py-1 sm:flex-row sm:divide-x sm:py-4">
|
<form className="mx-auto flex max-w-2xl flex-col flex-col-reverse py-1 sm:flex-row sm:divide-x sm:py-4">
|
||||||
<div className="my-5 mr-4 flex flex-col text-lg font-bold">
|
<div className="my-5 mr-4 flex flex-col text-lg font-bold">
|
||||||
<ResourceLinkSubForm /> {/** //resource={resource} /> */}
|
<ResourceLinkSubForm /> {/** //resource={resource} /> */}
|
||||||
|
@ -52,8 +52,8 @@ const EditResourcePage = (
|
|||||||
});
|
});
|
||||||
|
|
||||||
const { mutate } = api.auditoryResource.update.useMutation({
|
const { mutate } = api.auditoryResource.update.useMutation({
|
||||||
onSuccess: async (data) => {
|
onSuccess: (_data) => {
|
||||||
// todo:
|
setServerError(undefined);
|
||||||
},
|
},
|
||||||
onError: (error) => setServerError(error.message),
|
onError: (error) => setServerError(error.message),
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user