style: remove unnecessary bottom padding from the rich text editor (#5976)

This commit is contained in:
Aaryan Khandelwal 2024-11-11 16:11:34 +05:30 committed by GitHub
parent c7c729d81b
commit 7082f7014d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -54,7 +54,7 @@ export const RichTextEditor = forwardRef<EditorRefApi, RichTextEditorWrapperProp
suggestions: mentionSuggestions,
}}
{...rest}
containerClassName={cn("relative pl-3 pb-3", containerClassName)}
containerClassName={cn("relative pl-3", containerClassName)}
/>
);
});