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
@@ -18,23 +18,18 @@
interface EditRequest {
id: string;
booking_id: string;
requested_by: string;
requested_at: string;
notes: string | null;
original: {
start_time: string;
end_time: string;
services: ServiceItem[];
notes: string;
};
proposed: {
start_time: string | null;
end_time: string | null;
services: ServiceItem[];
notes: string | null;
};
user: {
id: string;
full_name: string;
email: string;
phone: string;