diff --git a/.changeset/strange-files-cry.md b/.changeset/strange-files-cry.md new file mode 100644 index 0000000000..c9f19a00d0 --- /dev/null +++ b/.changeset/strange-files-cry.md @@ -0,0 +1,5 @@ +--- +"@medusajs/admin-ui": patch +--- + +fix(admin-ui): correct notification text on fulfillment cancel diff --git a/packages/admin-ui/ui/src/domain/orders/details/templates/fulfillment.tsx b/packages/admin-ui/ui/src/domain/orders/details/templates/fulfillment.tsx index 422f55347c..72e910d87e 100644 --- a/packages/admin-ui/ui/src/domain/orders/details/templates/fulfillment.tsx +++ b/packages/admin-ui/ui/src/domain/orders/details/templates/fulfillment.tsx @@ -84,7 +84,11 @@ export const FormattedFulfillment = ({ default: return cancelFulfillment.mutate(fulfillment.id, { onSuccess: () => - notification("Success", "Successfully canceled order", "success"), + notification( + "Success", + "Successfully canceled fulfillment", + "success" + ), onError: (err) => notification("Error", getErrorMessage(err), "error"), })