diff --git a/src/app/chatbot/components/ChatInput.tsx b/src/app/chatbot/components/ChatInput.tsx index aee731d..5bb231a 100644 --- a/src/app/chatbot/components/ChatInput.tsx +++ b/src/app/chatbot/components/ChatInput.tsx @@ -1,4 +1,4 @@ -import { useState, useRef, KeyboardEvent } from 'react'; +import { useState, useRef, type KeyboardEvent } from 'react'; import { PaperPlaneRightIcon } from '@phosphor-icons/react'; import { CustomButton } from '../../../components/custom'; diff --git a/src/app/chatbot/components/ChatWindow.tsx b/src/app/chatbot/components/ChatWindow.tsx index 132204f..92e9d3e 100644 --- a/src/app/chatbot/components/ChatWindow.tsx +++ b/src/app/chatbot/components/ChatWindow.tsx @@ -15,20 +15,6 @@ interface ChatWindowProps { onSendMessage: (text: string) => void; } -const SUGGESTIONS = [ - { - title: 'What is IROPS?', - desc: 'Learn about Irregular Operations and how flight disruptions are categorized.', - }, - { - title: 'Policy Engine Overview', - desc: 'Understand how business rules, compensation parameters, and gates evaluate.', - }, - { - title: 'Cohort Targeting Rules', - desc: 'Explore passenger segmentation by loyalty tier, cabin class, and sector.', - }, -]; export function ChatWindow({ activeConversation, @@ -96,26 +82,6 @@ export function ChatWindow({

How can I help with Aero Resolve today?

-

- Ask questions about Irregular Operations (IROPS), passenger recovery policies, or audience cohort segmentation. -

- -
- {SUGGESTIONS.map((s, idx) => ( - - ))} -
) : ( /* Messages List */