async function cancelTicket()

in src/frontend_service/static/index.js [258:270]


async function cancelTicket(id) {
    const response = await fetch('book/flight/decline', {
        method: 'POST',
        headers: {
            'Content-Type': 'application/json'
        }
    });
    if (response.ok) {
        logMessage("human", "I changed my mind.")
        removeTicketChoices(id);
        logMessage("ai", 'Booking declined. What else can I help you with?');
    }
}