Skip to content

Commit

Permalink
Merge pull request #621 from us3r-network/F-farcasterSignerReq-ttang
Browse files Browse the repository at this point in the history
feat: signed key request
  • Loading branch information
Tonyce committed Mar 15, 2024
2 parents 8b18a78 + e6fc586 commit 4bc9c62
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 4bc9c62

Please sign in to comment.