useCustomerUpdateAddress

A customer hook that helps you easily update a customer address.

// import
import { useCustomerUpdateAddress } from '@backpackjs/storefront';

// instantiation
const { updateAddress, ...updateStatus } = useCustomerUpdateAddress();

// use
const updatedAddress = await updateAddress({
  id,
  isDefault,
  address
})

Last updated