The Google Recaptcha V3 docs shows the easiest way to implement is using what they call "Automatically bind the challenge to a button" https://developers.google.com/recaptcha/docs/v3#automatically_bind_the_challenge_to_a_button
From their example, the callback function handles the submit directly. Are they implying that you don't have to verify the token using their API with this method? Or is this example just to show how you can run a JS callback function, that has the token as an argument?
If you don't have serverside verification of the recaptcha token, you can just remove the recaptcha event from the button, and have the form submit as per usual without the token.
So in short, is the example from the docs unsafe, or is it just missing the serverside verification part?