fix the capacity and NaN participants issue

This commit is contained in:
Asya Vee
2025-08-27 02:50:13 +04:00
parent 459289df2d
commit ff6de00988
9 changed files with 248 additions and 68 deletions

View File

@@ -16,6 +16,7 @@ export interface Resource extends BaseRecord {
// Booking Type entity
export interface BookingType extends BaseRecord {
name: string;
type: 'workshop' | 'rental';
display_name: string;
description?: string;
requires_payment?: boolean;