> ## Documentation Index
> Fetch the complete documentation index at: https://fillout.com/help/llms.txt
> Use this file to discover all available pages before exploring further.

# Disable the confetti effect

> Remove the default confetti effect on the Ending page of your Fillout forms. 

export const SupportBanner = () => {
  const titleId = React.useId();
  return <div className="support-banner" role="region" aria-labelledby={titleId}>
      <span className="support-banner__ring support-banner__ring--outer" aria-hidden="true" />
      <span className="support-banner__ring support-banner__ring--middle" aria-hidden="true" />
      <span className="support-banner__ring support-banner__ring--inner" aria-hidden="true" />
      <span className="support-banner__ring support-banner__ring--center" aria-hidden="true" />

      <div className="support-banner__content">
        <div className="support-banner__title" id={titleId} role="heading" aria-level="2">Still have questions?</div>

        <div className="support-banner__copy">
          <span className="support-banner__line">Our team is happy to help. Start a live chat using the</span>
          <span className="support-banner__line">
            chat bubble <span className="support-banner__chat-icon" aria-hidden="true" /> in the bottom right, or email us at
          </span>
          <span className="support-banner__line">
            <a href="mailto:support@fillout.com">support{'@'}fillout.com</a>
          </span>
        </div>

        <a className="support-banner__cta" href="mailto:support@fillout.com">Contact us</a>
      </div>
    </div>;
};

## How to remove the confetti display

By default, when respondents reach the end of their form submission, confetti will be displayed.

<img src="https://mintcdn.com/fillout-005a867b/h_QfN-F56vlvgBC6/images/Screenshot2025-02-25at4.35.56PM.png?fit=max&auto=format&n=h_QfN-F56vlvgBC6&q=85&s=4270fa5b68620a8fd0bf47462f4da303" alt="Screenshot of the Form designer tab of a form" width="2675" height="1347" data-path="images/Screenshot2025-02-25at4.35.56PM.png" />

To disable, go to the [**Ending page**](https://www.fillout.com/help/ending-page) (bottom of the screen) and then untoggle the `Confetti` switch.

<img src="https://mintcdn.com/fillout-005a867b/k0MHhpNnunFK0wn4/images/Screenshot2025-12-01at3.48.19PM.png?fit=max&auto=format&n=k0MHhpNnunFK0wn4&q=85&s=91795600b7056a5fc8e49d7d51c9a19b" alt="Screenshot 2025-12-01 at 3.48.19 PM.png" style={{ width:"27%" }} width="501" height="377" data-path="images/Screenshot2025-12-01at3.48.19PM.png" />

## **Related articles**

<CardGroup cols={3}>
  <Card title="Ending page" icon="party-bell" iconType="regular" color="#FFC738" href="/help/ending-page">
    Show a thank you page, redirect, or allow re-submission.
  </Card>

  <Card title="Page logic" icon="diagram-project" iconType="regular" color="#FFC738" href="/help/page-logic">
    Hide or show pages or custom endings based on respondent input.
  </Card>

  <Card title="Progress bar" icon="bars-progress" iconType="solid" color="#FFC738" href="/help/progress-bar">
    Customize the default progress bar on your form.
  </Card>
</CardGroup>

<SupportBanner />
