Skip to content

Commit

Permalink
fix(unlock-app): making sure we pass the recipient
Browse files Browse the repository at this point in the history
  • Loading branch information
julien51 committed Feb 19, 2024
1 parent c07f1e5 commit 6b44ed7
Showing 1 changed file with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,17 @@ export const WalletlessRegistrationClaim = ({
network,
})

const onRSVP = async ({ data, captcha }: { data: any; captcha: string }) => {
const onRSVP = async ({
recipient,
data,
captcha,
}: {
recipient?: string
data: any
captcha: string
}) => {
const { hash, owner, message } = await claim({
recipient,
metadata: data,
captcha,
})
Expand Down

0 comments on commit 6b44ed7

Please sign in to comment.