Here's the error, I'm facing ```js
{"message":"Not Found","code":404,"type":"general_route_not_found","version":"0.10.26"}
here's my code ```js
const handleLogin = () => {
account.createOAuth2Session("google");
};
return (
<div>
<button onClick={handleLogin}>Log in with Google</button>
</div>
);
}```