@ticketboothapp/booking 1.2.68 → 1.2.69

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ticketboothapp/booking",
3
- "version": "1.2.68",
3
+ "version": "1.2.69",
4
4
  "private": false,
5
5
  "sideEffects": [
6
6
  "**/*.css",
@@ -4511,6 +4511,10 @@ export function AdminChangeBookingFlow({
4511
4511
  previousReturnAvailabilityId: initialValues?.returnAvailabilityId ?? null,
4512
4512
  },
4513
4513
  });
4514
+ const refAfterChange = initialValues?.bookingReference?.trim();
4515
+ if (refAfterChange) {
4516
+ onSuccess?.({ reservationReference: refAfterChange });
4517
+ }
4514
4518
  setLoading(false);
4515
4519
  return;
4516
4520
  }