chore: fix

This commit is contained in:
2026-05-03 19:46:12 +02:00
parent 37ae4117b4
commit b1fa0ad608
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -659,10 +659,10 @@ export interface CancelCommandResponse {
livreur?: string; livreur?: string;
status?: string; status?: string;
position_in_queue?: number; position_in_queue?: number;
queue_info?: any; queue_info?: Record<string, unknown>;
}; };
action_required?: string; action_required?: string;
example?: any; example?: Record<string, unknown>;
new_status?: string; new_status?: string;
cancelled_by?: { cancelled_by?: {
username: string; username: string;
+1 -1
View File
@@ -63,7 +63,7 @@ export default function ProfilePage() {
} }
setLoadingProfile(false); setLoadingProfile(false);
}); });
}, [navigate]); // eslint-disable-line react-hooks/exhaustive-deps }, [navigate]);
const showSuccess = (msg: string) => { const showSuccess = (msg: string) => {
setSuccessMsg(msg); setSuccessMsg(msg);