Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
hundredark committed Mar 11, 2024
1 parent 5463d38 commit a35cd4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/utils/auth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const getChallenge = () => {
const seed = Buffer.from(forge.random.getBytesSync(32), 'binary');
const verifier = base64RawURLEncode(seed);
const challenge = base64RawURLEncode(sha256Hash(seed));
return { verifier, challenge }
return { verifier, challenge };
};

const signToken = (payload: Object, private_key: string): string => {
Expand Down

0 comments on commit a35cd4f

Please sign in to comment.