Hello,
I have the following code:
{
name: "content",
type: "richText",
editor: lexicalEditor({
features: ({ rootFeatures }) => {
return [
...rootFeatures,
HeadingFeature({
enabledHeadingSizes: ["h2", "h3", "h4", "h5"],
}),
FixedToolbarFeature(),
];
},
}),
label: "Content",
},
I'd like to use the fixed toolbar only, but in the admin, I still see an inline toolbar. How can I remove it?