HI
I was debugging and noticed that supertokens requests take much time
sign in api call internally makes 6 call which are run sequentionally and not parallely, making response time very slow
Provide is the snapshot of all calls, these calls indivually take less time but are run one after another therfore making the response time of around 2s, which is realy bad
Any way to fix this, so these can run parallely , may be something u can do such as run them via Promise.all or even Promise.allSettled ?