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;
status?: string;
position_in_queue?: number;
queue_info?: any;
queue_info?: Record<string, unknown>;
};
action_required?: string;
example?: any;
example?: Record<string, unknown>;
new_status?: string;
cancelled_by?: {
username: string;
+1 -1
View File
@@ -63,7 +63,7 @@ export default function ProfilePage() {
}
setLoadingProfile(false);
});
}, [navigate]); // eslint-disable-line react-hooks/exhaustive-deps
}, [navigate]);
const showSuccess = (msg: string) => {
setSuccessMsg(msg);