Skip to content

Commit

Permalink
feat: signed key request
Browse files Browse the repository at this point in the history
  • Loading branch information
ttang authored and ttang committed Mar 15, 2024
1 parent 5d65765 commit e6fc586
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/u3/src/hooks/social/farcaster/useFarcasterQR.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,12 +115,12 @@ export default function useFarcasterQR() {
await new Promise((resolve) => setTimeout(resolve, 2000));

const result = await axios
.get(`${WARPCAST_API}/v2/signed-key-request`, {
.get(`${REACT_APP_API_SOCIAL_URL}/3r-farcaster/signed-key-request`, {
params: {
token,
},
})
.then((response) => response.data.result);
.then((response) => response.data.data.result);

const { signedKeyRequest } = result;

Expand Down

0 comments on commit e6fc586

Please sign in to comment.