Skip to content

Commit

Permalink
Fix undefined JS function error.
Browse files Browse the repository at this point in the history
See #5.
  • Loading branch information
r-a-y committed Dec 6, 2024
1 parent 94b6c03 commit 1fd12ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/block.js
Original file line number Diff line number Diff line change
Expand Up @@ -1080,7 +1080,7 @@ console.log( e );
}

// Verify nonce.
let verify = await verifyNonce( e.data.nonce );
let verify = await this.verifyNonce( e.data.nonce );
if ( ! verify ) {
return;
}
Expand Down

0 comments on commit 1fd12ea

Please sign in to comment.