You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are lot of places where there is await within the SYNC operation. specially when getting the userInfo, interactionData from context and creating the messageBuilder (textSender) which needs to be removed as await is only for async operation/ function-calls.
Similarly there are places where await are missing in async calls which needs to fix.
Steps to reproduce:
look into file changes
Expected behavior:
remove await from sync and add missing await in async operation.
The text was updated successfully, but these errors were encountered:
Description:
SYNC
operation. specially when getting the userInfo, interactionData from context and creating the messageBuilder (textSender) which needs to be removed asawait
is only forasync
operation/ function-calls.await
are missing in async calls which needs to fix.Steps to reproduce:
Expected behavior:
sync
and add missing await inasync
operation.The text was updated successfully, but these errors were encountered: