User agent update

User agent is being set to "okhttp/4.9.2" when using the below Google Sign in method with an existing idToken in expo
const data = await authClient.signIn.social({
    provider: "google",
    idToken: {
        token: // Google ID Token,
        accessToken: // Google Access Token
    }
})


Anyway to send the actual userAgent along with the request instead of calling a custom API to manually update the userAgent?
Was this page helpful?