style: fix no-unused-props -- remove genuinely unused prop type fields from component interfaces
This commit is contained in:
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user