style: fix no-unused-props -- remove genuinely unused prop type fields from component interfaces
This commit is contained in:
@@ -19,7 +19,6 @@
|
||||
booking: {
|
||||
id: string;
|
||||
start_time: string;
|
||||
duration_minutes?: number;
|
||||
created_at: string;
|
||||
notes?: string;
|
||||
user?: {
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user