From ff574fa7300b55b135c8d348c519200f52d5991f Mon Sep 17 00:00:00 2001 From: fcarraUniSa Date: Tue, 17 Feb 2026 00:49:05 +0100 Subject: [PATCH] Update App.tsx --- App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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}