Migrated from Webflow to Netlify but still receiving from submissions from Webflow?

Hello, Netlify community! I recently migrated from Webflow to Netlify and have been testing it out. Everything was set up smoothly and my form was detected in the UI.

However, when I submit a form, I receive an email from Webflow. It’s still counting towards my form limit on the Webflow plan.

The Netlify UI does not show any submissions.

My website is: hobi.design

Here is the excerpt from the HTML export (if it helps):

<div class="contact_form-wrapper">
<div class="form w-form">
<form id="quotation-form" name="wf-form-Quotation" data-name="Quotation" method="post" data-netlify="true" data-wf-page-id="658296b199f3a97075785d73" data-wf-element-id="34917c1d-569b-d7ae-2228-101ad6cdf713">
   <div class="field_wrap"><label for="Name-2" class="field_label large">Name*</label><input class="field name w-input" data-msg-minlength="Please enter your name" maxlength="256" name="Name-2" data-name="Name 2" placeholder="" minlength="3" type="text" id="Name-2" data-msg="What should I call you?" required=""/></div>
   <div class="field_wrap">
      <label for="Email-2" class="field_label large">Email*</label><input class="field email w-input" maxlength="256" name="Email-2" data-name="Email 2" placeholder="" type="email" id="Email-2" required=""/>
      <div class="error"></div>
   </div>
   <div class="field_wrap">
      <label for="Message-2" class="field_label large">Tell us about your project*</label>
      <textarea class="field message w-input" maxlength="5000" name="Message-2" data-name="Message 2" placeholder="" minlength="10" id="Message-2" required=""></textarea>
      <div class="error"></div>
   </div>
   <div class="button_form-wrapper">
      <input type="submit" data-wait="Please wait..." class="button-2 full w-button" value="SUBMIT"/>
      <div class="text-style-italic-2">We&#x27;ll respond within one business day.</div>
   </div>
</form>
<div class="success w-form-done">
   <div class="success_wrap">
      <div class="success_text">Thank you!<br/>Your submission has been received!</div>
   </div>
</div>
<div class="error-message w-form-fail">
<div class="error-message_text">Oops! Something went wrong while submitting the form.</div>

Thank you!

@OutOfTokens Your form is still submitting to Webflow:

Netlify Forms in its most basic usage works with default form submission.

Your Form is likely powered by JavaScript in the js/webflow-script.js file:

image

You can view the code in your browser here:
https://hobi.design/js/webflow-script.js

It’s minified so is difficult to read, but you can see the reference to the endpoint it submits to:

You will need to remove the Webflow form handling for Netlify’s to take effect.

There may be some way for you to do this in Webflow, but I can’t advise as I don’t use Webflow.