style: fix no-unused-props -- remove genuinely unused prop type fields from component interfaces

This commit is contained in:
2026-06-25 14:44:10 +01:00
parent 111baa27f9
commit 6291d04b47
2 changed files with 0 additions and 6 deletions
@@ -19,7 +19,6 @@
booking: { booking: {
id: string; id: string;
start_time: string; start_time: string;
duration_minutes?: number;
created_at: string; created_at: string;
notes?: string; notes?: string;
user?: { user?: {
@@ -18,23 +18,18 @@
interface EditRequest { interface EditRequest {
id: string; id: string;
booking_id: string; booking_id: string;
requested_by: string;
requested_at: string;
notes: string | null; notes: string | null;
original: { original: {
start_time: string; start_time: string;
end_time: string;
services: ServiceItem[]; services: ServiceItem[];
notes: string; notes: string;
}; };
proposed: { proposed: {
start_time: string | null; start_time: string | null;
end_time: string | null;
services: ServiceItem[]; services: ServiceItem[];
notes: string | null; notes: string | null;
}; };
user: { user: {
id: string;
full_name: string; full_name: string;
email: string; email: string;
phone: string; phone: string;