We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0aa811f commit d495c0bCopy full SHA for d495c0b
packages/keychain/src/pages/slot/session/index.tsx
@@ -44,7 +44,7 @@ function CreateSession() {
44
headers.append("Content-Type", "application/json");
45
46
fetch(url, {
47
- body: session,
+ body: JSON.stringify(session),
48
headers,
49
method: "POST",
50
})
@@ -57,7 +57,7 @@ function CreateSession() {
57
console.error("failed to call the callback url", e);
58
router.replace(`/slot/auth/failure`);
59
});
60
- }, [router, queries.callback_uri, controller.account]);
+ }, [router, queries.callback_uri, controller]);
61
62
// Handler when user clicks the Create button
63
const onConnect = useCallback(
0 commit comments