Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
sandhose committed Dec 10, 2024
1 parent bea0ffd commit e4fe7b8
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/pages/client-implementation-guide/interactive.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,7 @@ const codeVerifier = persistentAtom<string>(
const codeChallenge = computed(codeVerifier, (codeVerifier) =>
task(() => computeCodeChallenge(codeVerifier)),
);
const code = persistentAtom<string | null>("code", null, {
encode: JSON.stringify,
decode: JSON.parse,
});
const code = persistentAtom("code");
const accessToken = persistentAtom<string | null>("access-token", null, {
encode: JSON.stringify,
decode: JSON.parse,
Expand Down

0 comments on commit e4fe7b8

Please sign in to comment.