Remove Continue Button On Form

We have created a few forms. On 1 of them, we want to hide the "Continue" button. I don't see how I can target that anchor for this one form only and leave all the other continue buttons working.

Would be nicer if you could specify where the continue button took you to.

Try to add condition by page ID to the following file

design/themes/THEME/templates/addons/form_builder/hooks/pages/page_content.override.tpl

{if $page.page_id != '123'}
        
{include file="buttons/button.tpl" but_text=__("continue") but_meta="ty-btn__secondary" but_href=$continue_url|fn_url but_role="action"}
{/if}