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;