This commit is contained in:
dzfelix 2025-02-24 18:17:56 +03:00
parent a96a49d649
commit 83965dd675
2 changed files with 2 additions and 1 deletions

View File

@ -46,7 +46,7 @@ export const ExpertCard: FC<ExpertDetailsProps> = ({ expert, locale, expertId })
document?.addEventListener('show_pay_form', handleShowPayForm);
return () => {
if (closeConnection) closeConnection();
// if (closeConnection) closeConnection();
document?.removeEventListener('show_pay_form', handleShowPayForm);
}
}, []);

View File

@ -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;