From 9538df2eaff8a30604291eda8f46b4ea87eb1ca9 Mon Sep 17 00:00:00 2001 From: Bastien Date: Thu, 25 Sep 2025 19:03:59 +0200 Subject: [PATCH] fix(dashboard): copy phone on order customer info (#13596) In the order details page, clicking the copy button for customer phone number was incorrectly copying the email address instead of the phone number. Co-authored-by: William Bouchard <46496014+willbouch@users.noreply.github.com> --- .changeset/chatty-garlics-kick.md | 5 +++++ .../src/components/common/customer-info/customer-info.tsx | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changeset/chatty-garlics-kick.md diff --git a/.changeset/chatty-garlics-kick.md b/.changeset/chatty-garlics-kick.md new file mode 100644 index 0000000000..6baa2db6e2 --- /dev/null +++ b/.changeset/chatty-garlics-kick.md @@ -0,0 +1,5 @@ +--- +"@medusajs/dashboard": patch +--- + +fix(dashboard): copy phone on order customer info diff --git a/packages/admin/dashboard/src/components/common/customer-info/customer-info.tsx b/packages/admin/dashboard/src/components/common/customer-info/customer-info.tsx index 33596131b4..2c0c82ead8 100644 --- a/packages/admin/dashboard/src/components/common/customer-info/customer-info.tsx +++ b/packages/admin/dashboard/src/components/common/customer-info/customer-info.tsx @@ -93,7 +93,7 @@ const Contact = ({ data }: { data: HttpTypes.AdminOrder }) => {
- +
)}