@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.js CHANGED
@@ -1927,8 +1927,7 @@ var _SeatmapRenderer = class _SeatmapRenderer {
1927
1927
  break;
1928
1928
  }
1929
1929
  if (boothLabel) {
1930
- const owned = status === "held" && this.ownedHold.has(id);
1931
- boothLabel.text(status === "booked" ? "SOLD" : status === "held" ? owned ? "HELD BY YOU" : "HELD" : seat.label);
1930
+ boothLabel.text(status === "booked" ? "SOLD" : status === "held" ? "HELD" : seat.label);
1932
1931
  boothLabel.fontSize(status === "free" ? 10 : Math.min(10, Math.max(6, this.boothDims.get(seat.rowId)?.width ?? 40) / 6));
1933
1932
  boothLabel.fontStyle(status === "free" ? "600" : "800");
1934
1933
  boothLabel.fill(status === "free" ? this.theme.seatLabelColor ?? DEF_SEAT_LABEL : "#ffffff");