We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0defb59 commit 5d8751cCopy full SHA for 5d8751c
src/useSignIn.ts
@@ -32,6 +32,7 @@ export const getMessageBody = ({ message }: { message: SiweMessage }) =>
32
export const verify = async (args: VerifyArgs, options?: UseSiweOptions) => {
33
const { baseUrl } = parseOptions(options);
34
const res = await fetch(`${baseUrl}/signin`, {
35
+ headers: { 'Content-Type': 'application/json' },
36
method: "POST",
37
body: JSON.stringify(args),
38
});
0 commit comments