I have an override Text component in production with the following registration:
import { Builder } from '@builder.io/react'
import Text from './Text'
Builder.registerComponent(Text, {
name: 'Text',
inputs: [
{
name: 'text',
type: 'richText',
required: true,
autoFocus: true,
bubble: true,
defaultValue: 'Enter some text...',
},
{
name: 'balanceRows',
type: 'boolean',
defaultValue: false,
},
],
override: true,
})
It’s been working fine in production for weeks. Suddenly the editor started using the built-in component again. When inspecting the schema in the editor I get the default:
{
"name": "Text",
"static": true,
"image": "https://firebasestorage.googleapis.com/v0/b/builder-3b0a2.appspot.com/o/images%2Fbaseline-text_fields-24px%20(1).svg?alt=media&token=12177b73-0ee3-42ca-98c6-0dd003de1929",
"inputs": [
{
"name": "text",
"type": "html",
"required": true,
"autoFocus": true,
"bubble": true,
"defaultValue": "Enter some text..."
}
],
"defaultStyles": {
"lineHeight": "normal",
"height": "auto"
},
"type": "react",
"hooks": {}
}
Public key: 66c23a3da9b242618026c11015d55926
Is this a new bug in the editor?