Skip to content

Commit

Permalink
Merge pull request #7 from DappyKit/fix/export-click-2
Browse files Browse the repository at this point in the history
fix: correct url
  • Loading branch information
IgorShadurin authored Jun 8, 2024
2 parents 9bd2b5e + 4dbfa17 commit 32ccc78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/controllers/v1/app/utils/app-create-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ export async function exportFrameToClickcaster(
signerAddress: string,
signer: ISigner,
): Promise<Response> {
const signature = signer.signMessage(`${fid.toString()}${frameUrl}${prepareEthAddress(signerAddress)}`)
const signature = await signer.signMessage(`${fid.toString()}${frameUrl}${prepareEthAddress(signerAddress)}`)

return postJsonData(clickcasterExportUrl, {
fid,
Expand Down

0 comments on commit 32ccc78

Please sign in to comment.