@ticketboothapp/booking 1.2.34 → 1.2.35

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.34",
3
+ "version": "1.2.35",
4
4
  "private": false,
5
5
  "sideEffects": [
6
6
  "**/*.css",
@@ -197,7 +197,7 @@ const DateCell = memo(function DateCell({
197
197
  const needsTallerCell = !isMobile && slotCount > 2;
198
198
  const mobileNeedsTaller = isMobile && slotCount > 2;
199
199
  const adminCapacityTallCells =
200
- Boolean(showCapacity) && !isMobile && slotCount > 0 && displayMode === 'times';
200
+ Boolean(showCapacity) && !isMobile && displayMode === 'times';
201
201
  const buttonClassName = useMemo(() => cn(
202
202
  styles.calendarDayCell,
203
203
  isMobile && (mobileNeedsTaller ? styles.calendarDayCellMobileTall : styles.calendarDayCellMobile),