diff --git a/docs/assets/schemas/api-latest.yaml b/docs/assets/schemas/api-latest.yaml index b8cba8aa..4d6f0761 100644 --- a/docs/assets/schemas/api-latest.yaml +++ b/docs/assets/schemas/api-latest.yaml @@ -338,7 +338,6 @@ paths: - `total_secs_exp` - `penalty` - `is_maker` - - `is_pretaker` - `is_taker` - `is_participant` - `maker_status` @@ -1387,9 +1386,6 @@ components: is_maker: type: boolean description: Whether you are the maker or not - is_pretaker: - type: boolean - description: Whether you are a pre-taker or not is_taker: type: boolean description: Whether you are the taker or not diff --git a/frontend/src/models/Order.model.ts b/frontend/src/models/Order.model.ts index a02a7e80..ede9e4bd 100644 --- a/frontend/src/models/Order.model.ts +++ b/frontend/src/models/Order.model.ts @@ -75,7 +75,6 @@ class Order { penalty: Date | undefined = undefined; is_maker: boolean = false; is_taker: boolean = false; - is_pretaker: boolean = false; is_participant: boolean = false; maker_status: 'Active' | 'Seen recently' | 'Inactive' = 'Active'; taker_status: 'Active' | 'Seen recently' | 'Inactive' = 'Active';