fix chat
This commit is contained in:
parent
a96a49d649
commit
83965dd675
|
@ -46,7 +46,7 @@ export const ExpertCard: FC<ExpertDetailsProps> = ({ expert, locale, expertId })
|
||||||
document?.addEventListener('show_pay_form', handleShowPayForm);
|
document?.addEventListener('show_pay_form', handleShowPayForm);
|
||||||
|
|
||||||
return () => {
|
return () => {
|
||||||
if (closeConnection) closeConnection();
|
// if (closeConnection) closeConnection();
|
||||||
document?.removeEventListener('show_pay_form', handleShowPayForm);
|
document?.removeEventListener('show_pay_form', handleShowPayForm);
|
||||||
}
|
}
|
||||||
}, []);
|
}, []);
|
||||||
|
|
|
@ -27,6 +27,7 @@ class SignalConnector {
|
||||||
private events = {} as any;
|
private events = {} as any;
|
||||||
static instance?: SignalConnector;
|
static instance?: SignalConnector;
|
||||||
constructor({ jwt }: { jwt?: string}) {
|
constructor({ jwt }: { jwt?: string}) {
|
||||||
|
console.log('here')
|
||||||
const options = {
|
const options = {
|
||||||
accessTokenFactory: () => jwt
|
accessTokenFactory: () => jwt
|
||||||
} as IHttpConnectionOptions;
|
} as IHttpConnectionOptions;
|
||||||
|
|
Loading…
Reference in New Issue