Default Value not working For Registered Components

Please fill out as many of the following questions as possible so we can help you promptly! If you don’t know how to answer or it does not apply, feel free to remove it or leave it blank.

Builder content link

Builder public api key
3bc796894b9c4668885e9df39e266fdb

What are you trying to accomplish
I want to pass Default Values from my registered components into the inputs

Code stack you are integrating Builder with
Next.js

type or paste code here
Builder.registerComponent(
  dynamic(() => import("./pages/builder-components/orderToday")),
  {
    name: "Order Today",
    friendlyName: "Order Today",
    inputs: [
      { 
        name: 'headerText', 
        type: 'text',
        defaultValue: 'ORDER NOW'
      },
      { 
        name: 'paragraphText', 
        type: 'richText',
        friendlyName: 'Paragraph Text',
        defaultValue: "<p>Start and Scale a <span>6-figure Bookkeeping Business</span> In Only 2-Hours Per Day Leveraging Breakthrough AI Technology!</p>"

      }
    ],
  }
);

Hello @hslater101,

Welcome to the Builder.io forum!

Unfortunately, we are unable to reproduce the issue on our end; the default values are working fine for us. Could you please check and confirm if there are any errors in the browser console?

Additionally, could you try registering the custom component without using dynamic() and see if that resolves the issue?

Thank you,