@seatlayer/core 0.15.0 → 0.15.1

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/dist/index.cjs CHANGED
@@ -2246,8 +2246,7 @@ var _SeatmapRenderer = class _SeatmapRenderer {
2246
2246
  break;
2247
2247
  }
2248
2248
  if (boothLabel) {
2249
- const owned = status === "held" && this.ownedHold.has(id);
2250
- boothLabel.text(status === "booked" ? "SOLD" : status === "held" ? owned ? "HELD BY YOU" : "HELD" : seat.label);
2249
+ boothLabel.text(status === "booked" ? "SOLD" : status === "held" ? "HELD" : seat.label);
2251
2250
  boothLabel.fontSize(status === "free" ? 10 : Math.min(10, Math.max(6, this.boothDims.get(seat.rowId)?.width ?? 40) / 6));
2252
2251
  boothLabel.fontStyle(status === "free" ? "600" : "800");
2253
2252
  boothLabel.fill(status === "free" ? this.theme.seatLabelColor ?? DEF_SEAT_LABEL : "#ffffff");