From 83965dd67573a98266092cdfea6ea7cfe087e12f Mon Sep 17 00:00:00 2001 From: dzfelix Date: Mon, 24 Feb 2025 18:17:56 +0300 Subject: [PATCH] fix chat --- src/components/Experts/ExpertDetails.tsx | 2 +- src/lib/signalr-connection.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/Experts/ExpertDetails.tsx b/src/components/Experts/ExpertDetails.tsx index 0f107ab..7e96ced 100644 --- a/src/components/Experts/ExpertDetails.tsx +++ b/src/components/Experts/ExpertDetails.tsx @@ -46,7 +46,7 @@ export const ExpertCard: FC = ({ expert, locale, expertId }) document?.addEventListener('show_pay_form', handleShowPayForm); return () => { - if (closeConnection) closeConnection(); + // if (closeConnection) closeConnection(); document?.removeEventListener('show_pay_form', handleShowPayForm); } }, []); diff --git a/src/lib/signalr-connection.ts b/src/lib/signalr-connection.ts index 3d730cd..379cb94 100644 --- a/src/lib/signalr-connection.ts +++ b/src/lib/signalr-connection.ts @@ -27,6 +27,7 @@ class SignalConnector { private events = {} as any; static instance?: SignalConnector; constructor({ jwt }: { jwt?: string}) { + console.log('here') const options = { accessTokenFactory: () => jwt } as IHttpConnectionOptions;