@ticketboothapp/booking 1.2.174 → 1.2.175

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.174",
3
+ "version": "1.2.175",
4
4
  "private": false,
5
5
  "sideEffects": [
6
6
  "**/*.css",
@@ -298,7 +298,7 @@ export function AdminChangeReceiptComparison({
298
298
  {formatCurrencyAmount(removedWithoutRefund, currency, displayLocale)} of booking value will be removed without customer credit.
299
299
  </p>
300
300
  </div>
301
- ) : summaryDisplayLines.length === 0 && Math.abs(amountDue) < 0.005 ? (
301
+ ) : summaryDisplayLines.length === 0 && Math.abs(bookingTotalChange ?? 0) < 0.005 ? (
302
302
  <div className="rounded-md border border-dashed border-stone-300 bg-white/70 px-3 py-4 text-center">
303
303
  <p className="text-sm font-medium text-stone-700">No pricing changes</p>
304
304
  </div>