Hi there!
i have the following in JS:
ServiceA.exeute();
ServiceB.execute();
ServiceA does a db query and stores a result in LocalStorage.
ServiceB uses the above mentioned LocalStorage to construct its own query.
But it seems that when I test the app and the JS executes, ServiceB seems
to execute at the same time as ServiceA, as it is still using the previous LocalStorage value (before it even got set by ServiceA)
Is there a way to ensure that one service executes after the other??