payment-kit 1.17.1 → 1.17.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -78,6 +78,7 @@ export default function SubscriptionEmbed() {
78
78
  ignore_zero: true,
79
79
  include_staking: true,
80
80
  customer_id: subscription?.customer_id,
81
+ include_overdraft_protection: false,
81
82
  }),
82
83
  {
83
84
  refreshDeps: [subscriptionId, authToken, subscription?.customer_id],
@@ -181,7 +182,7 @@ export default function SubscriptionEmbed() {
181
182
  subscription.customer.updated_at ? new Date(subscription.customer.updated_at).toISOString() : '',
182
183
  48
183
184
  )}
184
- name={subscription.customer.email}
185
+ name={`${subscription.customer.name} (${subscription.customer.email})`}
185
186
  description={<DidAddress did={subscription.customer.did} responsive />}
186
187
  />
187
188
  ),