diff --git a/App.tsx b/App.tsx index 341ede4..f8ba8f9 100644 --- a/App.tsx +++ b/App.tsx @@ -1,4 +1,3 @@ - import React, { useState } from 'react'; import { AgentDashboard } from './components/AgentDashboard'; import { ClientPortal } from './components/ClientPortal'; @@ -271,6 +270,7 @@ const App: React.FC = () => { articles={state.settings.features.kbEnabled ? state.articles : []} tickets={state.tickets.filter(t => t.customerName === state.currentUser?.name)} queues={state.queues} + settings={state.settings} // Passed settings onCreateTicket={createTicket} onReplyTicket={replyToTicket} onSubmitSurvey={submitSurvey}