Rank 2: Process
Is it possible to make the SDK functions fail without logging about it in the JS console?
I'm wrapping the call in question in a try { ... } catch (e) { ... } statement, however a 404 is still being reported.
My use case is I'm using a team to signify admin users, and checking each user to see if they belong to the admin team to determine whether or not to show the admin UI.
I'm currently teams.listMemberships to query if the current user is a member of the 'admin' team. If there is a better way of doing this let me know! 🙂