Expecting the arrow to take me back to the Transfer screen
Takes me to a blank screen

I discovered just now that it redirects to the Transfer screen eventually, it just takes quiet some time. The same thing happens whenever we are trying to go back to the Transfer screen.
This is probably a consequence of making the Transfer screen the new start screen, where it takes time to load the users token and display the first token in the array?
If we can't do anything about the delay we should probably provide something indicating the loading process.
@taleldayekh Thanks for tracking your observations :)
We have got this issue to tackle the problem throughout the dApp -> https://github.com/raiden-network/light-client/issues/688
Ah, yes, missed that we had that one. :)
I investigated this. The delay wasn't caused by tokens loading, but was triggered on next action/event, indicating some watcher was waiting for any commit, i.e. wasn't fired at first, just on next event, which usually was a SDK's newBlock commit. Ended up being the tokens watcher in Home.vue.
One-liner fix is available in #830.
Most helpful comment
I investigated this. The delay wasn't caused by tokens loading, but was triggered on next action/event, indicating some watcher was waiting for any commit, i.e. wasn't fired at first, just on next event, which usually was a SDK's
newBlockcommit. Ended up being thetokenswatcher inHome.vue.One-liner fix is available in #830.