Mevert
Mevert
I think that we have similar issue (using aws-amplify v. 1.1.40 ). For example, if I subscribe to two topics: ``` subscriptions = PubSub.subscribe([‘topic1’, ‘topic2’]).subscribe({ next: data => setMessage(JSON.stringify(data, null,...
> I think that we have similar issue (using aws-amplify v. 1.1.40 > ). For example, if I subscribe to two topics: > > ``` > subscriptions = PubSub.subscribe(‘topic1’, ‘topic2’).subscribe({...
> > ``` > > subscriptions = PubSub.subscribe(‘topic1’, ‘topic2’).subscribe({ > > next: data => setMessage(JSON.stringify(data, null, 2)), > > error: error => setMessage(JSON.stringify(error, null, 2)), > > close: () =>...